restructure: move el compiler content into lang/

This commit is contained in:
Will Anderson
2026-05-05 01:38:51 -05:00
parent ce68f91a38
commit 1ae68962cf
143 changed files with 0 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// runner.el entry point for the text/ acceptance corpus.
//
// Each text/examples/*.el is its own El program with its own fn main().
// Compile, link, and run-output-diff is handled by tests/text/run.sh
// this file is the El-side stub kept for pattern parity with tests/time/
// and tests/calendar/.
fn main() -> Void {
println("text/ acceptance corpus is driven by run.sh — invoke that directly.")
println("Each examples/*.el is a self-contained program; runner.el is a parity stub.")
}