frawk icon indicating copy to clipboard operation
frawk copied to clipboard

Continue does not jump to correct point in loop

Open andrewchambers opened this issue 1 year ago • 0 comments

BEGIN {
	for (i = 0 ; i < 10 ; i += 1) {
		if (1)
			continue;
	}
	print("ok")
}
$ awk -f bug.awk
ok
$ frawk -f bug.awk
# infinite loop.

andrewchambers avatar Dec 15 '23 05:12 andrewchambers