Implemented extern functions

This commit is contained in:
2025-02-12 00:04:30 +01:00
parent 1083db6ab2
commit 3b66dae1d4
24 changed files with 304 additions and 169 deletions

View File

@ -25,13 +25,14 @@ func TestFunction(t *testing.T) {
}
func TestKeyword(t *testing.T) {
tokens := token.Tokenize([]byte("assert if import else loop return struct switch"))
tokens := token.Tokenize([]byte("assert if import else extern loop return struct switch"))
expected := []token.Kind{
token.Assert,
token.If,
token.Import,
token.Else,
token.Extern,
token.Loop,
token.Return,
token.Struct,