seperated builtins
Some checks failed
Build / build (push) Successful in 10m0s
Test / build (push) Failing after 16m20s

This commit is contained in:
Chuck Smith
2024-03-20 17:01:45 -04:00
parent f735215c28
commit 43362475f9
13 changed files with 345 additions and 204 deletions

View File

@@ -11,24 +11,25 @@ endif
syntax case match
syntax keyword xType true false
syntax keyword xType true false null
syntax keyword xKeyword let fn if else return while
syntax keyword xFunction len input print first last rest push pop exit
syntax keyword xFunction len input print first last rest push pop exit assert
syntax keyword xOperator == != < > !
syntax keyword xOperator + - * / =
syntax region xString start=/"/ skip=/\\./ end=/"/
" syntax region xComment start='#' end='$' keepend
syntax region xComment start='#' end='$' keepend
syntax region xComment start='//' end='$' keepend
highlight link xType Type
highlight link xKeyword Keyword
highlight link xFunction Function
highlight link xString String
" highlight link xComment Comment
highlight link xComment Comment
highlight link xOperator Operator
highlight Operator ctermfg=5