You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know that one command per line is a core principle of the language, but after considering it on and off for months, I think it would be worth exploring even with a scoped subset of commands.
Describe The Solution You'd Like
After becoming pretty familiar with the src, it's clear why one command per line is the way to go, it makes things pretty easy to parse and keeps them orderly in terms of execution. That being said, recursively parsing instructions with look backs shouldn't add too much complexity.
Open to suggestions.
The text was updated successfully, but these errors were encountered:
there are few examples that it is not the case. for example 'set' knows to invoke a function and so does 'if'.
so it is in the command logic itself.
the general concept was to keep everything super simple and if needed for specific command, do it there.
Feature Description
I know that one command per line is a core principle of the language, but after considering it on and off for months, I think it would be worth exploring even with a scoped subset of commands.
Describe The Solution You'd Like
After becoming pretty familiar with the src, it's clear why one command per line is the way to go, it makes things pretty easy to parse and keeps them orderly in terms of execution. That being said, recursively parsing instructions with look backs shouldn't add too much complexity.
Open to suggestions.
The text was updated successfully, but these errors were encountered: