refactor: Rename `tomogram` to `tomograph`

This commit is contained in:
Leni Aniva 2025-06-24 15:23:59 -07:00
parent d7001c1b28
commit 1a9e450066
Signed by: aniva
GPG Key ID: D5F96287843E8DFB
3 changed files with 7 additions and 5 deletions

View File

@ -1,3 +0,0 @@
def main : IO Unit := do
IO.println "tomogram stub"

5
Tomograph.lean Normal file
View File

@ -0,0 +1,5 @@
def main (args : List String) : IO Unit := do
let command :: args := args | IO.eprintln "Must supply a command"
IO.println s!"{command}"

View File

@ -19,8 +19,8 @@ lean_exe repl {
}
@[default_target]
lean_exe tomogram {
root := `Tomogram
lean_exe tomograph {
root := `Tomograph
-- Solves the native symbol not found problem
supportInterpreter := true
}