Compare commits

..

11 commits
master ... gc

4 changed files with 841 additions and 272 deletions

1099
ISBPL.java

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.
ISBPL is now obsolete. Try [SPL](https://github.com/tudbut/spl) instead.
Stuff: [TudbuT/isbpl-random-stuff](https://github.com/TudbuT/isbpl-random-stuff)
---
@ -20,7 +18,7 @@ is the same as
```
or
```isbpl
(((2 1 *) 1 +) print)
( ( ( 2 1 * ) 1 + ) print )
```
in both languages, this will print 3.

View file

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

View file

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