Skip to content
Mike Redko edited this page Apr 9, 2021 · 2 revisions

microl syntax

Everything is an expression in microl!

  • definition → let name = expr
  • sequence → do expr end
  • if → if cond then body [ else otherwise ]
  • while → while cond body
  • break → break ε
  • function → function ( arg { , arg } )
  • assignment → name = value

Clone this wiki locally