m-lopez / jack

Exploring a minimal language for minimal computers.
MIT License
2 stars 0 forks source link

Add declarations for constants. #7

Closed m-lopez closed 7 years ago

m-lopez commented 7 years ago

Add declarations for constants to language. Here is the proposed grammar.

definition ::= identifier ":" type ":=" expression

Examples as follows.

x: Int := 3
supports_avx512: Bool := true
m-lopez commented 7 years ago

Done. See PR #9.