Skip to content

Commit d505f28

Browse files
authored
Merge pull request #240 from kevanstannard/syntax-lookup-type
Syntax lookup: type
2 parents ca58071 + 35546be commit d505f28

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

misc_docs/syntax/language_type.mdx

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
id: "type"
3+
keywords: ["type"]
4+
name: "type"
5+
summary: "This is the `type` keyword"
6+
category: "languageconstructs"
7+
---
8+
9+
The `type` keyword is used to declare a _type_, including [Records](/docs/manual/latest/record), [Variants](/docs/manual/latest/variant) and [Polymorphic Variants](/docs/manual/latest/polymorphic-variant).
10+
11+
### Example
12+
13+
<CodeTab labels={["ReScript", "JS Output"]}>
14+
15+
```res
16+
type location = {
17+
name: string,
18+
coordinates: (float, float),
19+
keywords: array<string>,
20+
}
21+
22+
let uluru: location = {
23+
name: "Uluru",
24+
coordinates: (-25.344490, 131.035431),
25+
keywords: ["Rock", "Australia"],
26+
}
27+
```
28+
29+
```js
30+
var uluru_coordinates = [-25.34449, 131.035431];
31+
32+
var uluru_keywords = ["Rock", "Australia"];
33+
34+
var uluru = {
35+
name: "Uluru",
36+
coordinates: uluru_coordinates,
37+
keywords: uluru_keywords,
38+
};
39+
```
40+
41+
</CodeTab>
42+
43+
### References
44+
45+
* [ReScript Types](/docs/manual/latest/type)
46+
* [Record Types](/docs/manual/latest/record)
47+
* [Variant Types](/docs/manual/latest/variant)
48+
* [Polymorphic Variant Types](/docs/manual/latest/polymorphic-variant)
49+

0 commit comments

Comments
 (0)