⏺ All three modes now work: #5

Merged
navicore merged 4 commits from single-bin into main 2025-12-04 01:15:57 +00:00
navicore commented 2025-12-04 00:54:12 +00:00 (Migrated from github.com)

File mode

./seqlisp examples/factorial.lisp

Stdin/piped mode (with comments and blank lines)

cat examples/factorial.lisp | ./seqlisp

Interactive mode

./seqlisp # then type code, Ctrl+D to run

The bug was the swap before string-concat which reversed the line order, causing (define x 10)\nx to become x(define x 10).

# File mode ./seqlisp examples/factorial.lisp # Stdin/piped mode (with comments and blank lines) cat examples/factorial.lisp | ./seqlisp # Interactive mode ./seqlisp # then type code, Ctrl+D to run The bug was the swap before string-concat which reversed the line order, causing (define x 10)\nx to become x(define x 10).
Sign in to join this conversation.
No description provided.