Created
September 9, 2016 03:31
-
-
Save davidkellis/0084774b0b6c541af6c43669e9be3d9e 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]] | |
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