Actually just three programming languages in a trenchcoat
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove some unnecessary semis

+4 -4
+4 -4
samples/array.tri
··· 1 1 proc main!() { 2 - let three = 3; 3 - let array = [4, 5, 6]; 4 - let longer = [1, 2, three, ..array]; 5 - exit longer; 2 + let three = 3 3 + let array = [4, 5, 6] 4 + let longer = [1, 2, three, ..array] 5 + exit longer 6 6 }