Expand description
Variable declaration parser (dec).
Handles the dec keyword, which introduces a mutable binding.
dec int x = 42
dec array[int] xs = [1, 2, 3]
dec (int, string) p = (1, "hi")
dec int x, string y = (1, "hi")Variable declaration parser (dec).
Handles the dec keyword, which introduces a mutable binding.
dec int x = 42
dec array[int] xs = [1, 2, 3]
dec (int, string) p = (1, "hi")
dec int x, string y = (1, "hi")