7 lines
121 B
Go
Raw Normal View History

2024-06-05 15:51:05 +02:00
package token
// Keywords defines the keywords used in the language.
var Keywords = map[string]bool{
"return": true,
}