Work on usable codegen

- escape js names
- executable output
- better FC in parsing
- experiment with IO
This commit is contained in:
2024-09-29 22:17:51 -07:00
parent 76e627825c
commit 151f678f75
7 changed files with 116 additions and 18 deletions

22
newt/Prelude.newt Normal file
View File

@@ -0,0 +1,22 @@
module Prelude
data Nat : U where
Z : Nat
S : Nat -> Nat
data Maybe : U -> U where
Just : {a : U} -> a -> Maybe a
Nothing : {a : U} -> Maybe a
data Either : U -> U -> U where
Left : {a b : U} -> a -> Either a b
Right : {a b : U} -> b -> Either a b
-- TODO this is special cased in some languages, maybe for easier
-- inference? Figure out why.
infixr 0 _$_
_$_ : {a b : U} -> (a -> b) -> a -> b
f $ a = f a