[–] forgotmypw17 5y ago ↗ Because of how most text tools work, even something like copy and paste, I personally avoid any language which uses whitespace for its syntax.I imagine one day I will use Python, and I've already an idea of what syntax style I will use. It will look like this: def SomeFunction (firstArgument, argumentTheSecond): #{ WriteLog("SomeFunction(", firstArgument, argumentTheSecond, ")")#; print("Hello, World!")#; #} This way, if I ever have to copy and paste it, and the whole thing gets de-indented, I am not completely lost.
1 comment
[ 3.0 ms ] story [ 20.9 ms ] threadI imagine one day I will use Python, and I've already an idea of what syntax style I will use. It will look like this:
This way, if I ever have to copy and paste it, and the whole thing gets de-indented, I am not completely lost.