-
Notifications
You must be signed in to change notification settings - Fork 0
Add arrays #32
Copy link
Copy link
Open
Labels
featureNew enhancementNew enhancementsemanticsRelated to the evaluatorRelated to the evaluatorsyntaxRelated to the lexer or parserRelated to the lexer or parser
Metadata
Metadata
Assignees
Labels
featureNew enhancementNew enhancementsemanticsRelated to the evaluatorRelated to the evaluatorsyntaxRelated to the lexer or parserRelated to the lexer or parser
x = [1, 2, 3, 4]x[1] == 2x[2:4] == [3, 4]x = [1:10]; for i in x { }