Forked from davidkellis/gist:0084774b0b6c541af6c43669e9be3d9e
Last active
September 9, 2016 03:40
-
-
Save archer884/e0ab2d186eb9066eb2fb70e6f9fe82b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]] | |
5. type Foo = struct X, Y { Int, Y, 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] | |
] | |
5. type Foo = struct | |
X: Add X, | |
Y: Div Y, | |
{ | |
Int, | |
Y, | |
Array[X] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment