derive Show and Eq, improvements to LSP

This commit is contained in:
2026-02-24 20:01:58 -08:00
parent a789cffcce
commit 983dde4de2
21 changed files with 281 additions and 39 deletions

8
tests/UnsafeIO.newt Normal file
View File

@@ -0,0 +1,8 @@
module UnsafeIO
import Prelude
main : IO Unit
main = do
let x = unsafePerformIO $ putStrLn "Hello, World!"
pure MkUnit