1
0
Fork
You've already forked see
0
Work in Progress
  • Common Lisp 82.4%
  • C 13.5%
  • Emacs Lisp 1.9%
  • Shell 0.9%
  • HTML 0.8%
  • Other 0.5%
Find a file
2026年04月23日 19:45:09 +07:00
c update UI & Raylib Backend 2026年04月07日 09:24:31 +07:00
s code refactor, app menu on hover, correct button behavior in popups 2026年04月19日 15:54:33 +07:00
t add test system fiveam, test hex&elf parser 2026年02月02日 12:03:31 +07:00
v add file-select 2026年04月07日 09:24:50 +07:00
.gitignore auto build test.s 2026年02月02日 14:10:54 +07:00
COPYING git init 2026年01月15日 13:54:11 +07:00
env.lisp create executable in ECL 2026年04月23日 19:45:09 +07:00
README.md add ACL 2026年01月27日 17:30:33 +07:00
see.asd create executable in ECL 2026年04月23日 19:45:09 +07:00

SEE

Quickstart

SBCL

sbcl --load env.lisp \
 --eval "(env:enter)" \
	 --eval "(main)" \
	 --quit

CLISP

clisp -ansi \
 -i env.lisp \
	 -x "(env:enter)" \
	 -x "(main)"

ECL

ecl --load env.lisp \
 --eval "(env:enter)" \
	--eval "(main)" \
	--eval "(ext:quit)"

ABCL

NOTE: you need to download abcl & jna

java -classpath "$PWD/jna-5.18.1.jar:$PWD/abcl-bin-1.9.2/abcl.jar" \
 org.armedbear.lisp.Main \
	 --load env.lisp \
	 --eval "(env:enter)" \
	 --eval "(main)" \
	 --eval "(ext:quit)"

Allegro CL

alisp -L env.lisp \
 -e "(env:enter)" \
	 -e "(see:main)" \
	 -kill