Better structure

This commit is contained in:
Daniella / Tove 2022-05-13 19:12:23 +02:00
parent 7540960565
commit 718dfb7986
2 changed files with 0 additions and 26 deletions

View file

@ -1,4 +0,0 @@
func main {
"Hello World!\n" puts
0
}

View file

@ -1,22 +0,0 @@
"#stream.isbpl" include
func main {
pop
def id "helloworld.isbpl" STREAM.create.file.out stream =id
def s "func main {\n \"Hello World!\\n\" puts\n 0\n}" _array =s
def i 0 =i
while { i s alen lt } {
( s i aget ) id STREAM.write stream
i inc
}
id STREAM.close stream
"Testing: \n" struppercase puts
"helloworld.isbpl" include
main pop
"TEST DONE\n" strlowercase puts
0
}