The print looks weird because it has a newline in it (instead of printing \n into the string, which would have been idiomatic). But when looking to see how the other languages did the newline, I found that they don't even print.
Consider dropping the print and replacing with # ....
The print looks weird because it has a newline in it (instead of printing
\n
into the string, which would have been idiomatic). But when looking to see how the other languages did the newline, I found that they don't even print.Consider dropping the print and replacing with
# ...
.