14 lines
539 B
EmacsLisp
14 lines
539 B
EmacsLisp
// runner.el — entry point for the calendar/ acceptance corpus.
|
|
//
|
|
// Each calendar/examples/*.el is its own El program with its own fn main().
|
|
// Compile, link, and run-output-diff is handled by tests/calendar/run.sh —
|
|
// this file is the El-side stub kept for pattern parity.
|
|
//
|
|
// Run from the calendar/ directory:
|
|
// ./run.sh
|
|
|
|
fn main() -> Void {
|
|
println("calendar/ 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.")
|
|
}
|