|
|
|
|
|
by lurquer
2755 days ago
|
|
I had to write a scripting language for a personal project. Since I could create whatever syntax I wanted, I used this: 'if x==4' was written as 'x[4]' 'if x>2 && x<4' was written as 'x(2,4)' 'if x>=2 && x<4' was written as 'x[2,4)' Etc. It was very easy to read and write... at least for me. |
|