From c647ff6ba9daeb8aa10dbd0fb01df07dc13eb6e7 Mon Sep 17 00:00:00 2001 From: Mattias Hansson Date: Mon, 17 Nov 2025 22:48:31 +0100 Subject: [PATCH] Added FOR and NEXT to main.go --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index bed664b..72622af 100644 --- a/main.go +++ b/main.go @@ -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 {