Skip to content
Oeiuwq Faith Blog OpenSource Porfolio

tmcgilchrist/milliner

Small ML for Erlang

tmcgilchrist/milliner.json
{
"createdAt": "2014-08-06T01:18:25Z",
"defaultBranch": "master",
"description": "Small ML for Erlang",
"fullName": "tmcgilchrist/milliner",
"homepage": null,
"language": "Erlang",
"name": "milliner",
"pushedAt": "2014-09-21T22:10:12Z",
"stargazersCount": 1,
"topics": [],
"updatedAt": "2016-05-10T03:40:51Z",
"url": "https://github.com/tmcgilchrist/milliner"
}

Small ML like language for the Erlang BEAM VM.

#Numbers
1;
#Strings
'hello ML'
# comments
let a = 1 #bindings
let a = fun a -> a; # functions
### Resources
http://www.evanmiller.org/write-a-template-compiler-for-erlang.html
http://askra.de/software/ocaml-doc/3.12/full-grammar.html
http://www.cs.cornell.edu/courses/cs312/2005sp/lectures/lec17.asp
https://github.com/tomprimozic/type-systems Type Systems implemented in OCaml
http://www.lysator.liu.se/c/ANSI-C-grammar-y.html