Add ready message to indicate the main loop is up

This commit is contained in:
Leni Aniva 2023-10-01 21:58:58 -07:00
parent c4a97d8a76
commit fd4d3226a1
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
2 changed files with 2 additions and 1 deletions

View File

@ -108,6 +108,7 @@ unsafe def main (args: List String): IO Unit := do
errToSorry := false
})
let coreM := metaM.run'
IO.println "ready."
discard <| coreM.toIO coreContext { env := env }
catch ex =>
IO.println "Uncaught IO exception"

View File

@ -1,5 +1,5 @@
namespace Pantograph
def version := "0.2.4"
def version := "0.2.5"
end Pantograph