erg-lang / erg

A statically typed language compatible with Python
http://erg-lang.org
Apache License 2.0
2.62k stars 54 forks source link

Redundant `print!` in docs #406

Closed jonatan1609 closed 1 year ago

jonatan1609 commented 1 year ago

Under the Hello World part in the basics guide, there is a redundant print! statement.

print! f x, y # NG, can be taken to mean either `print!(f(x), y)` or `print!(f(x, y))` print!