Improved Stack-Based Programming Language
bootstrap | ||
.gitignore | ||
COPYING | ||
errorstream.isbpl | ||
file.isbpl | ||
helloworld.isbpl | ||
helloworldgen.isbpl | ||
iota.isbpl | ||
isbpl.isbpl | ||
LICENSE | ||
README.md | ||
setup.sh | ||
std.isbpl | ||
stream.isbpl | ||
time.isbpl |
isbpl
Improved Stack-Based Programming Language
Incomplete, not currently compilable, only interpretable.
Stuff: TudbuT/isbpl-random-stuff
ISBPL is similar to Lisp:
(print (+ 1 (* 1 2)))
is the same as
2 1 * 1 + print
or
( ( ( 2 1 * ) 1 + ) print )
in both languages, this will print 3.
These examples used the print function, which does not exist by default, instead, puts should be used in combination with _string.