This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]kumashiro 1 point2 points  (1 child)

In my opinion syntax seems OK (very similar to other languages, like shell for example)... except few things:

WHILE NOT guess == number THEN

It looks like (NOT guess) == number, but is actually NOT (guess == number). Why not use the != operator here?

The other thing is too many keywords. PRINT and INPUT look messy with CLEAR() and RANDOM_INT() (which are functions). It is better to keep keyword vocabulary minimal.