|
|
|
|
|
by Aardappel
294 days ago
|
|
Seen by creator :) It comes with a tiny minecraft clone in < 100 lines of Lobster. Agreed it could use more actual game examples. I've written a ton of game prototypes in it, and some could do with open sourcing, just haven't gotten around to it. |
|
I noticed that Lobster, like many other languages, does not use the C style for-loop syntax, `for (int i = 0; i < m; i++): print(i);`. Could you say why that is? I have been writing Python for many years but still miss that C syntax. Initiating `i` right before every loop feels clunky to me.