Skip to content

Instantly share code, notes, and snippets.

@dom96
Last active August 29, 2015 13:56
Show Gist options
  • Save dom96/959f27018ea3247a4498 to your computer and use it in GitHub Desktop.
Save dom96/959f27018ea3247a4498 to your computer and use it in GitHub Desktop.
let # let
x = 5 # x equal 5
type # type
Foo = int # `Foo` equals `int`
Bar = object # `Bar` equals object
field: Foo # With field `field` of type `Foo`
proc foo: int = 5 # procedure `foo` of type `int` equals 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment