Added FOR and NEXT to main.go

This commit is contained in:
Mattias Hansson 2025-11-17 22:48:31 +01:00
parent 37296cf627
commit c647ff6ba9

View file

@ -105,6 +105,8 @@ func registerCommands(comp *compiler.Compiler) {
comp.Registry().Register(&commands.PokeWCommand{})
comp.Registry().Register(&commands.SubEndCommand{})
comp.Registry().Register(&commands.GosubCommand{})
comp.Registry().Register(&commands.ForCommand{})
comp.Registry().Register(&commands.NextCommand{})
}
func writeOutput(filename string, lines []string) error {