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
+15
View File
@@ -0,0 +1,15 @@
// runner.el entry point for the time/ acceptance corpus.
//
// Unlike tests/html_sanitizer/runner.el (which iterates cases.json against
// a single runtime function), each time/examples/*.el is its own El
// program with its own fn main(). Compile, link, and run-output-diff is
// handled by tests/time/run.sh this file is the El-side stub kept for
// pattern parity (every tests/<name>/ has both a runner.el and a run.sh).
//
// Run from the time/ directory:
// ./run.sh
fn main() -> Void {
println("time/ 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.")
}