Created
November 11, 2016 10:51
-
-
Save realeroberto/32607d0a59aa4122afd7b5572c9c5f3b to your computer and use it in GitHub Desktop.
A self-evaluating Tcl proc.
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 x {} { set y "x" } | |
# let's try it... | |
# | |
# % x | |
# x | |
# % [x] | |
# x | |
# % [[x]] | |
# x | |
# % [[[x]]] | |
# x | |
# % [[[[x]]]] | |
# x | |
# | |
# and so on and so on... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment