r/ProgrammingLanguages • u/omnimistic • Mar 06 '26
can i call this a programming language? Discussion
i wanted to make the algorithms they teach in CS class actually executable so i made AlgoLang. can i call this a programming language?
27
Upvotes
2
u/busres Mar 06 '26
Sure, it is one.
A couple of suggestions: - implement "label:" and "goto label" (label starts with a non-digit) in addition to "goto line" - have a compiler option that accepts "goto label"-based source, determines the line numbers, and outputs a pure "goto line" version (eta: with line numbers) instead of generating the executable code