Compare commits

..

11 commits
master ... gc

4 changed files with 841 additions and 272 deletions

File diff suppressed because it is too large Load diff

View file

@ -3,8 +3,6 @@ Improved Stack-Based Programming Language
Incomplete, not currently compilable, only interpretable. Incomplete, not currently compilable, only interpretable.
ISBPL is now obsolete. Try [SPL](https://github.com/tudbut/spl) instead.
Stuff: [TudbuT/isbpl-random-stuff](https://github.com/TudbuT/isbpl-random-stuff) Stuff: [TudbuT/isbpl-random-stuff](https://github.com/TudbuT/isbpl-random-stuff)
--- ---

View file

@ -1,7 +1,6 @@
"Brainfuck->ISBPL transpiler" # "Brainfuck->ISBPL transpiler" #
native acopy
"#stream.isbpl" include "#stream.isbpl" include
"#multi.isbpl" include "#multi.isbpl" include

View file

@ -593,12 +593,3 @@ func astartswith {
match alen match alen
asub match eq asub match eq
} }
func times {
with callable amount ;
def i 0 =i
callable [ while { i amount lt } {
i
i 1 + =i
} ] foreach
}