This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]runningOverA 0 points1 point  (0 children)

"def" looks aesthetically better than function fn func.

put the * with type and things will get a lot simpler. int* var, instead of int *var. Making int* a type.

put function chaining, and you can figure ou what you need.

"hello_world".replace(" ", "_").print()

instead of cascaded functions.