Hello there,
Anyone here use that language?
From what i can tell so far, it looks like the most ridiculous language i have ever seen. That's because the syntax attempts to force the programmer to keep track of every space in the program lines. THAT seems like a discontinuity in how humans want to program because it nails down the form of the text into a overly rigid form.
For example, if you are declaring constants you can not do this in an attempt to line up the decimal points vertically:
x=___1.234 (the underscores are spaces really)
y=123.4
You MUST do it this way only:
x=1.234
y=123.4
Do i have this wrong? I only took a very short look at some of the documentation so far.
Anyone here use that language?
From what i can tell so far, it looks like the most ridiculous language i have ever seen. That's because the syntax attempts to force the programmer to keep track of every space in the program lines. THAT seems like a discontinuity in how humans want to program because it nails down the form of the text into a overly rigid form.
For example, if you are declaring constants you can not do this in an attempt to line up the decimal points vertically:
x=___1.234 (the underscores are spaces really)
y=123.4
You MUST do it this way only:
x=1.234
y=123.4
Do i have this wrong? I only took a very short look at some of the documentation so far.