From fdcccaab6eb3f13b7409597b6d478feca05b5892 Mon Sep 17 00:00:00 2001 From: Ember Sawady Date: Mon, 22 Feb 2021 03:06:57 -0500 Subject: [PATCH] Add delete builtin --- hare.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hare.lua b/hare.lua index 8ac07d3..5a8322e 100644 --- a/hare.lua +++ b/hare.lua @@ -7,7 +7,7 @@ local P, R, S = lpeg.P, lpeg.R, lpeg.S local M = {_NAME = 'hare'} local builtin = token(l.FUNCTION, word_match{ - 'len', 'offset', 'free', 'alloc', 'assert', 'append', 'abort' + 'len', 'offset', 'free', 'alloc', 'assert', 'append', 'abort', 'delete' }) local comment = token(l.COMMENT, '//' * l.nonnewline_esc^0) -- 2.45.2