blob: 963715375eb97d982a1117dfd4d422a7aa8decc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package no.eliashaugsbakk.kompilator.tokenization;
import java.util.Set;
public class Keywords {
public static final Set<String> KEYWORDS = Set.of(
"skriv",
"set",
"mut"
);
}
|