Skip to content

Instantly share code, notes, and snippets.

@davidkellis
Created September 9, 2016 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save davidkellis/0084774b0b6c541af6c43669e9be3d9e to your computer and use it in GitHub Desktop.
Save davidkellis/0084774b0b6c541af6c43669e9be3d9e to your computer and use it in GitHub Desktop.
1. type Foo = struct { X | Int, Float, Array[X]}
2. type Foo = struct {X ; Int, Float, Array[X]}
3. type Foo = Struct[X; Int, Float, Array[X]]
4. type Foo = struct [X; Int, Float, Array[X]]
1. type Foo = struct {
X |
Int,
Float,
Array[X]
}
2. type Foo = struct {
X;
Int,
Float,
Array[X]
}
3. type Foo = Struct[
X;
Int,
Float,
Array[X]
]
4. type Foo = struct [
X;
Int,
Float,
Array[X]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment