A structured procedural language w/ a Lisp runtime / Rust ATProto bridge, to build a working TUI Bsky client
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename Superplan sources to .spl and override Linguist classification

+9 -1
+8
.gitattributes
··· 1 1 # Superplan source files 2 + # Superplan source 3 + *.spl linguist-language=Text 4 + 5 + # If you still have older files during transition 2 6 *.sp linguist-language=Text 7 + 8 + # Ignore generated build output in repo stats if ever committed by mistake 9 + bridge/target/** linguist-generated=true 10 + target/** linguist-generated=true 3 11 4 12 bridge/target/** linguist-generated=true 5 13 target/** linguist-generated=true
+1 -1
lisp-tools/parser/run.lisp
··· 12 12 (load "lisp-tools/interpreter/interpreter.lisp") 13 13 14 14 (format t "~%Parsing file...~%~%") 15 - (let ((ast (superplan.parser:parse-file "superplan/examples/home.sp"))) 15 + (let ((ast (superplan.parser:parse-file "superplan/examples/home.spl"))) 16 16 (superplan.pretty:pretty-print-ast ast) 17 17 (format t "~%--- Running ---~%~%") 18 18 (superplan.interpreter:run-program ast))