git-subtree-dir: golang-lean git-subtree-mainline:6487c7046fgit-subtree-split:f5f1701922
9 lines
380 B
Text
9 lines
380 B
Text
import GolangLean
|
|
|
|
/-! Corpus driver — runs every `.go` script under `corpus/` and compares
|
|
the captured stdout to the matching `.expected` file. Mirrors octive-lean's
|
|
`CorpusCheck`. Currently a no-op until the interpreter exists. -/
|
|
|
|
def main (_args : List String) : IO UInt32 := do
|
|
IO.println "golang-lean corpus-check: no corpus yet (interpreter is a scaffold)"
|
|
return 0
|