-
-
Save dom96/6442b7c92a4333dba5765311f01fc14a 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
| proc foo(x: (string, proc ())) = | |
| x[1]() | |
| foo( | |
| ("foobar", proc () = echo("Hello!")) | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment