Skip to content

Instantly share code, notes, and snippets.

@Varriount
Created January 23, 2014 20:34
Show Gist options
  • Save Varriount/8586245 to your computer and use it in GitHub Desktop.
Save Varriount/8586245 to your computer and use it in GitHub Desktop.
type
TTest = tuple[x: range[0..80], y: range[0..25]]
let x: TTest = (2, 23)
echo(x)
type
TTest = tuple[x: range[0..80], y: range[0..25]]
let x: TTest = TTest(2, 23)
echo(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment