Created
September 14, 2016 23:26
-
-
Save Araq/eb9f9168b6751737b2cc4f9872f8e562 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| {.experimental.} | |
| {.this: it.} | |
| using | |
| it: string | |
| proc say(it) = system.echo it | |
| proc test(it) = | |
| while =~re"abc": | |
| say() | |
| break | |
| test"abc" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment