mirror of
https://github.com/uffejakobsen/acme.git
synced 2026-01-22 19:16:03 +00:00
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@447 4df02467-bbd4-4a76-a152-e7ce94205b78
11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
|
|
; "!continue" inside a macro is not supposed to continue a loop outside the macro:
|
|
!macro testmacro {
|
|
!continue ; -> "!continue not within a loop"
|
|
}
|
|
|
|
!while 1 {
|
|
+testmacro
|
|
!break ; inhibit infinite loop :)
|
|
}
|