Nobody Wants to Write YAML(noyaml.com)6 points·by samcolvin·vor 6 Jahren·1 commentsnoyaml.comNobody Wants to Write YAMLhttps://noyaml.com/1 commentsPost comment[–]forgotmypw17·vor 6 JahrenreplyBecause 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.
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:
This way, if I ever have to copy and paste it, and the whole thing gets de-indented, I am not completely lost.