diff options
| author | Cody <cody@codyq.dev> | 2023-03-24 17:33:44 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-03-24 17:33:44 -0500 |
| commit | f9d13f3098b2a5984f59d612be87c184aba0b2c7 (patch) | |
| tree | 0a8059a4604026c3c0fcde587617507063cf7ccf /tour/types.sloth | |
| parent | 28e0b95d8ecbbc44ef81069ad122a88b2a64c74e (diff) | |
| download | sloth-f9d13f3098b2a5984f59d612be87c184aba0b2c7.tar.gz | |
Stuff and things
Diffstat (limited to 'tour/types.sloth')
| -rw-r--r-- | tour/types.sloth | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tour/types.sloth b/tour/types.sloth index 0fdae33..8af0856 100644 --- a/tour/types.sloth +++ b/tour/types.sloth @@ -6,7 +6,7 @@ type Person = { grades: Map<String, i32>, }; -val cody = Person { +val cody = Person( name: "Cody Q", age: 17, hobbies: { @@ -19,7 +19,7 @@ val cody = Person { "Physics": 93, "English": 78, }, -}; +); # Tuple Type type Position = (i32, i32); |
