Skiylia-Lang / Verboscript

A toy programming language made in python; designed to be close to written english
GNU General Public License v3.0
2 stars 0 forks source link

End statements #6

Open SK1Y101 opened 3 years ago

SK1Y101 commented 3 years ago

So in C, if you have two commands separated by a semicolon, they can be on the same line with no problem. Ie: int x; x=10; printf(x) Is three separate commands.

I propose that, as this language is based on plain English text, that we use a full stop, and each command is treated like a sentence: Make x equal to 10. Show x.

Python of course achieves this by forcing each command to be on a separate line.

senay21 commented 3 years ago

Their might be problem confusion of full stop with decimal.

SK1Y101 commented 3 years ago

Hmm, you raise a good point.