feat(frontend): Tomogram #220

Open
aniva wants to merge 3 commits from frontend/tomogram into dev
3 changed files with 7 additions and 5 deletions
Showing only changes of commit 1a9e450066 - Show all commits

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
}