Skip to content

Added `matches` builtin and fixed grammar issue

Michael Aaron Murphy requested to merge drosseau:master into master

Created by: drosseau

Adding matches made me run into an issue with the grammar. Trying to run matches hello '\w+' actually started a match statement followed by the expression es hello '\w+' which was due to having whitespace? instead of whitespace+. This issue was in a few places. You could declare variables like letfoo = bar for instance.

Merge request reports