kragniz / anyprint

Use any* language's print statements in Python
Do What The F*ck You Want To Public License
402 stars 22 forks source link

Rust support #8

Open progval opened 7 years ago

progval commented 7 years ago

Hi,

The Rust idiom to write something on the console is:

println!("format {} arguments", "some");

the ! denotes a macro.

Any idea how this could be done in Python?

the-kenny commented 7 years ago

Don't forget to check the well-formedness of the format string at compile time! :)

bl4ckb0ne commented 7 years ago

See #3