LightAndLight / ipso

A functional scripting language.
https://ipso.dev
17 stars 1 forks source link

Divide `builtins` into submodules by type #146

Closed LightAndLight closed 2 years ago

LightAndLight commented 2 years ago

e.g.

builtins.array

foldl : (a -> b -> a) -> a -> Array b -> a
...

builtins.string

foldl : (a -> Char -> a) -> a -> String -> a
...

Tasks