Data update

This commit is contained in:
Ingy döt Net 2025-06-11 20:16:52 -04:00
parent 72eb4943cb
commit 4d5544505c
2347 changed files with 62432 additions and 16731 deletions

View file

@ -0,0 +1,15 @@
def method1
method2
end
def method2
puts caller.join("\n")
end
def method0
method1
end
puts "-------"
method0
puts "-------"

View file

@ -0,0 +1,51 @@
%\n { 0a }
%\s { 20 }
%\0 { 00 }
%DBG { [ LIT2 -True -System/debug ] DEO }
%newline { [ LIT2 \n -Console/write ] DEO }
|1 @True
|0e @System/debug $1
|18 @Console/write $1
|100
foo
DBG
BRK
@foo ( -- )
#c0de
;msgs/foo print/dbg
DBG newline
bar
JMP2r
@bar ( -- )
#cafe
;msgs/bar print/dbg
DBG newline
baz
JMP2r
@baz ( -- )
#f00d
;msgs/baz print/dbg
DBG newline
JMP2r
@print/str ( str* -- )
LDAk .Console/write DEO
INC2 LDAk ?/str
POP2 JMP2r
@print/dbg ( str* -- )
;msgs/inside /str
( str* ) !/str
@msgs [
&inside "Inside \s "of: \s \0
&foo "foo. \n \0
&bar "bar. \n \0
&baz "baz. \n \0 ]