tree-sitter-dust/example.dust

13 lines
242 B
Plaintext
Raw Normal View History

2023-08-22 23:56:12 +00:00
# Lists are created by grouping items in partheses and separating them with
# commas.
numbers = (1, 2, 3);
# To access the values in a list, use an integer as an index.
x = numbers.0;
y = numbers.1;
z = numbers.2;
assert_equal(x + y, z);