├── .gitignore ├── Makefile ├── README.md ├── TODO ├── configure ├── design └── sswitch.sxc ├── doc ├── MACROS ├── NOTES └── WIP.md ├── examples ├── Makefile ├── broken │ ├── fire.c │ └── hash-djb2.sxc ├── fire.sxc ├── hash-djb2.sxc ├── hello.sxc ├── linear-lisp │ ├── README.md │ ├── interp.lisp │ ├── paper.html │ └── paper.txt ├── struct.sxc └── words.txt ├── install.sh ├── main.lisp ├── profile ├── rd ├── run-tests.sh ├── sxc ├── sxc-pretty ├── sxc.sh ├── sxcc ├── sxcc.sh ├── tests ├── adder.sxc ├── adder.sxc.out ├── array-initialization.sxc ├── array-initialization.sxc.out ├── bf.sxc ├── bf.sxc.in ├── bf.sxc.out ├── block.sxc ├── block.sxc.out ├── break.sxc ├── break.sxc.out ├── comma.sxc ├── comma.sxc.out ├── dowhile.sxc ├── dowhile.sxc.out ├── equals.sxc ├── equals.sxc.out ├── goto.sxc ├── goto.sxc.out ├── hello.sxc ├── hello.sxc.out ├── k_and_r │ ├── p12.sxc │ ├── p12.sxc.out │ ├── p13.sxc │ ├── p13.sxc.out │ ├── p15.sxc │ ├── p15.sxc.out │ ├── p16.sxc │ ├── p16.sxc.in │ ├── p16.sxc.out │ ├── p17.sxc │ ├── p17.sxc.in │ ├── p17.sxc.out │ ├── p18-1.sxc │ ├── p18-1.sxc.in │ ├── p18-1.sxc.out │ ├── p18-2.sxc │ ├── p18-2.sxc.in │ ├── p18-2.sxc.out │ ├── p19.sxc │ ├── p19.sxc.in │ ├── p19.sxc.out │ ├── p20.sxc │ ├── p20.sxc.in │ ├── p20.sxc.out │ ├── p22.sxc │ ├── p22.sxc.in │ ├── p22.sxc.out │ ├── p24.sxc │ ├── p24.sxc.out │ ├── p29.sxc │ ├── p29.sxc.in │ ├── p29.sxc.out │ ├── p32.sxc │ ├── p32.sxc.in │ ├── p32.sxc.out │ ├── p59.sxc │ ├── p59.sxc.in │ ├── p59.sxc.out │ ├── p69.sxc │ ├── p69.sxc.in │ ├── p69.sxc.out │ ├── p76.part1.sxc │ ├── p76.part2.sxc │ ├── p76.part3.sxc │ ├── p76.part4.sxc │ ├── p76.sxc │ ├── p76.sxc.in │ ├── p76.sxc.out │ ├── p9.sxc │ └── p9.sxc.out ├── pointers.sxc └── pointers.sxc.out ├── to-translate ├── README.md ├── anser │ ├── Makefile │ ├── README.md │ ├── TODO │ ├── anser.h │ ├── sha256 │ ├── sha256.cpp │ ├── tests │ └── tests.cpp ├── woc.c └── xp32 │ ├── LICENCE │ ├── Makefile │ ├── README │ ├── XP32.exe │ ├── __.SYMDEF SORTED │ ├── _depend │ ├── angle.h │ ├── camera.c │ ├── camera.h │ ├── fbanim.c │ ├── fbanim.h │ ├── fire.c │ ├── fire.h │ ├── font.c │ ├── font.h │ ├── goo.c │ ├── goo.h │ ├── line.c │ ├── line.h │ ├── list.c │ ├── list.h │ ├── main.c │ ├── matrix.c │ ├── matrix.h │ ├── one.c │ ├── random.c │ ├── random.h │ ├── scalar.h │ ├── screen.c │ ├── screen.h │ ├── seq.h │ ├── smoke.c │ ├── smoke.h │ ├── terrain.c │ ├── terrain.h │ ├── three.c │ ├── two.c │ ├── vector.c │ ├── vector.h │ ├── window.c │ └── window.h └── typed-cl.lisp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/TODO -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/configure -------------------------------------------------------------------------------- /design/sswitch.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/design/sswitch.sxc -------------------------------------------------------------------------------- /doc/MACROS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/doc/MACROS -------------------------------------------------------------------------------- /doc/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/doc/NOTES -------------------------------------------------------------------------------- /doc/WIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/doc/WIP.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/broken/fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/broken/fire.c -------------------------------------------------------------------------------- /examples/broken/hash-djb2.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/broken/hash-djb2.sxc -------------------------------------------------------------------------------- /examples/fire.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/fire.sxc -------------------------------------------------------------------------------- /examples/hash-djb2.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/hash-djb2.sxc -------------------------------------------------------------------------------- /examples/hello.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/hello.sxc -------------------------------------------------------------------------------- /examples/linear-lisp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/linear-lisp/README.md -------------------------------------------------------------------------------- /examples/linear-lisp/interp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/linear-lisp/interp.lisp -------------------------------------------------------------------------------- /examples/linear-lisp/paper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/linear-lisp/paper.html -------------------------------------------------------------------------------- /examples/linear-lisp/paper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/linear-lisp/paper.txt -------------------------------------------------------------------------------- /examples/struct.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/struct.sxc -------------------------------------------------------------------------------- /examples/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/examples/words.txt -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/install.sh -------------------------------------------------------------------------------- /main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/main.lisp -------------------------------------------------------------------------------- /profile: -------------------------------------------------------------------------------- 1 | PATH=`pwd`:$PATH 2 | -------------------------------------------------------------------------------- /rd: -------------------------------------------------------------------------------- 1 | find . -name '*~' -exec rm {} \; 2 | -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/run-tests.sh -------------------------------------------------------------------------------- /sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/sxc -------------------------------------------------------------------------------- /sxc-pretty: -------------------------------------------------------------------------------- 1 | sxc.sh -------------------------------------------------------------------------------- /sxc.sh: -------------------------------------------------------------------------------- 1 | ${SXC-sxc} $1 | indent 2 | -------------------------------------------------------------------------------- /sxcc: -------------------------------------------------------------------------------- 1 | sxcc.sh -------------------------------------------------------------------------------- /sxcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/sxcc.sh -------------------------------------------------------------------------------- /tests/adder.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/adder.sxc -------------------------------------------------------------------------------- /tests/adder.sxc.out: -------------------------------------------------------------------------------- 1 | 1+2=3 2 | 1*2=2 3 | ((2 + 3) * 5)=25 4 | -------------------------------------------------------------------------------- /tests/array-initialization.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/array-initialization.sxc -------------------------------------------------------------------------------- /tests/array-initialization.sxc.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /tests/bf.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/bf.sxc -------------------------------------------------------------------------------- /tests/bf.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/bf.sxc.in -------------------------------------------------------------------------------- /tests/bf.sxc.out: -------------------------------------------------------------------------------- 1 | 0123456789Hello world -------------------------------------------------------------------------------- /tests/block.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/block.sxc -------------------------------------------------------------------------------- /tests/block.sxc.out: -------------------------------------------------------------------------------- 1 | x: 20 2 | x: 10 3 | -------------------------------------------------------------------------------- /tests/break.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/break.sxc -------------------------------------------------------------------------------- /tests/break.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/break.sxc.out -------------------------------------------------------------------------------- /tests/comma.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/comma.sxc -------------------------------------------------------------------------------- /tests/comma.sxc.out: -------------------------------------------------------------------------------- 1 | gnitset 2 | -------------------------------------------------------------------------------- /tests/dowhile.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/dowhile.sxc -------------------------------------------------------------------------------- /tests/dowhile.sxc.out: -------------------------------------------------------------------------------- 1 | 1234567890 2 | -------------------------------------------------------------------------------- /tests/equals.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/equals.sxc -------------------------------------------------------------------------------- /tests/equals.sxc.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/goto.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/goto.sxc -------------------------------------------------------------------------------- /tests/goto.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/goto.sxc.out -------------------------------------------------------------------------------- /tests/hello.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/hello.sxc -------------------------------------------------------------------------------- /tests/hello.sxc.out: -------------------------------------------------------------------------------- 1 | Hello, World! 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p12.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p12.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p12.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p12.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p13.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p13.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p13.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p13.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p15.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p15.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p15.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p15.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p16.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p16.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p16.sxc.in: -------------------------------------------------------------------------------- 1 | this is a test 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p16.sxc.out: -------------------------------------------------------------------------------- 1 | this is a test 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p17.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p17.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p17.sxc.in: -------------------------------------------------------------------------------- 1 | this is a test 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p17.sxc.out: -------------------------------------------------------------------------------- 1 | this is a test 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p18-1.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p18-1.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p18-1.sxc.in: -------------------------------------------------------------------------------- 1 | this is a test 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p18-1.sxc.out: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p18-2.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p18-2.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p18-2.sxc.in: -------------------------------------------------------------------------------- 1 | this is a test 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p18-2.sxc.out: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p19.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p19.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p19.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p19.sxc.in -------------------------------------------------------------------------------- /tests/k_and_r/p19.sxc.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p20.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p20.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p20.sxc.in: -------------------------------------------------------------------------------- 1 | this 2 | is 3 | a 4 | test 5 | again -------------------------------------------------------------------------------- /tests/k_and_r/p20.sxc.out: -------------------------------------------------------------------------------- 1 | 4 5 20 2 | -------------------------------------------------------------------------------- /tests/k_and_r/p22.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p22.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p22.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p22.sxc.in -------------------------------------------------------------------------------- /tests/k_and_r/p22.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p22.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p24.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p24.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p24.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p24.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p29.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p29.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p29.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p29.sxc.in -------------------------------------------------------------------------------- /tests/k_and_r/p29.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p29.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p32.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p32.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p32.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p32.sxc.in -------------------------------------------------------------------------------- /tests/k_and_r/p32.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p32.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p59.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p59.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p59.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p59.sxc.in -------------------------------------------------------------------------------- /tests/k_and_r/p59.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p59.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p69.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p69.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p69.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p69.sxc.in -------------------------------------------------------------------------------- /tests/k_and_r/p69.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p69.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p76.part1.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p76.part1.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p76.part2.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p76.part2.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p76.part3.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p76.part3.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p76.part4.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p76.part4.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p76.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p76.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p76.sxc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p76.sxc.in -------------------------------------------------------------------------------- /tests/k_and_r/p76.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p76.sxc.out -------------------------------------------------------------------------------- /tests/k_and_r/p9.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p9.sxc -------------------------------------------------------------------------------- /tests/k_and_r/p9.sxc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/k_and_r/p9.sxc.out -------------------------------------------------------------------------------- /tests/pointers.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/tests/pointers.sxc -------------------------------------------------------------------------------- /tests/pointers.sxc.out: -------------------------------------------------------------------------------- 1 | x: 42 2 | -------------------------------------------------------------------------------- /to-translate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/README.md -------------------------------------------------------------------------------- /to-translate/anser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/Makefile -------------------------------------------------------------------------------- /to-translate/anser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/README.md -------------------------------------------------------------------------------- /to-translate/anser/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/TODO -------------------------------------------------------------------------------- /to-translate/anser/anser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/anser.h -------------------------------------------------------------------------------- /to-translate/anser/sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/sha256 -------------------------------------------------------------------------------- /to-translate/anser/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/sha256.cpp -------------------------------------------------------------------------------- /to-translate/anser/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/tests -------------------------------------------------------------------------------- /to-translate/anser/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/anser/tests.cpp -------------------------------------------------------------------------------- /to-translate/woc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/woc.c -------------------------------------------------------------------------------- /to-translate/xp32/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/LICENCE -------------------------------------------------------------------------------- /to-translate/xp32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/Makefile -------------------------------------------------------------------------------- /to-translate/xp32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/README -------------------------------------------------------------------------------- /to-translate/xp32/XP32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/XP32.exe -------------------------------------------------------------------------------- /to-translate/xp32/__.SYMDEF SORTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/__.SYMDEF SORTED -------------------------------------------------------------------------------- /to-translate/xp32/_depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/_depend -------------------------------------------------------------------------------- /to-translate/xp32/angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/angle.h -------------------------------------------------------------------------------- /to-translate/xp32/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/camera.c -------------------------------------------------------------------------------- /to-translate/xp32/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/camera.h -------------------------------------------------------------------------------- /to-translate/xp32/fbanim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/fbanim.c -------------------------------------------------------------------------------- /to-translate/xp32/fbanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/fbanim.h -------------------------------------------------------------------------------- /to-translate/xp32/fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/fire.c -------------------------------------------------------------------------------- /to-translate/xp32/fire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/fire.h -------------------------------------------------------------------------------- /to-translate/xp32/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/font.c -------------------------------------------------------------------------------- /to-translate/xp32/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/font.h -------------------------------------------------------------------------------- /to-translate/xp32/goo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/goo.c -------------------------------------------------------------------------------- /to-translate/xp32/goo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/goo.h -------------------------------------------------------------------------------- /to-translate/xp32/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/line.c -------------------------------------------------------------------------------- /to-translate/xp32/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/line.h -------------------------------------------------------------------------------- /to-translate/xp32/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/list.c -------------------------------------------------------------------------------- /to-translate/xp32/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/list.h -------------------------------------------------------------------------------- /to-translate/xp32/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/main.c -------------------------------------------------------------------------------- /to-translate/xp32/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/matrix.c -------------------------------------------------------------------------------- /to-translate/xp32/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/matrix.h -------------------------------------------------------------------------------- /to-translate/xp32/one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/one.c -------------------------------------------------------------------------------- /to-translate/xp32/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/random.c -------------------------------------------------------------------------------- /to-translate/xp32/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/random.h -------------------------------------------------------------------------------- /to-translate/xp32/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/scalar.h -------------------------------------------------------------------------------- /to-translate/xp32/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/screen.c -------------------------------------------------------------------------------- /to-translate/xp32/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/screen.h -------------------------------------------------------------------------------- /to-translate/xp32/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/seq.h -------------------------------------------------------------------------------- /to-translate/xp32/smoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/smoke.c -------------------------------------------------------------------------------- /to-translate/xp32/smoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/smoke.h -------------------------------------------------------------------------------- /to-translate/xp32/terrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/terrain.c -------------------------------------------------------------------------------- /to-translate/xp32/terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/terrain.h -------------------------------------------------------------------------------- /to-translate/xp32/three.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/three.c -------------------------------------------------------------------------------- /to-translate/xp32/two.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/two.c -------------------------------------------------------------------------------- /to-translate/xp32/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/vector.c -------------------------------------------------------------------------------- /to-translate/xp32/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/vector.h -------------------------------------------------------------------------------- /to-translate/xp32/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/window.c -------------------------------------------------------------------------------- /to-translate/xp32/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/to-translate/xp32/window.h -------------------------------------------------------------------------------- /typed-cl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BusFactor1Inc/sxc/HEAD/typed-cl.lisp --------------------------------------------------------------------------------