add for loop

This commit is contained in:
2023-03-20 00:00:17 +00:00
parent a080152aee
commit b56c1fc485
12 changed files with 203 additions and 73 deletions

View File

@@ -41,10 +41,13 @@ func shell() {
if translationerr.EXISTS {
panicErr(translationerr)
}
_, runimeErr, output := run(translated, global)
output, runimeErr := ThrowOnNonLoop(run(translated, global))
output = openReturn(output)
if runimeErr.EXISTS {
panicErr(runimeErr)
} else if count == 1 {
fmt.Println(anyToArgon(output, true, true, 3, 0, true, 1))
}
}