Skip to content

Instantly share code, notes, and snippets.

@realeroberto
Created November 11, 2016 10:51
Show Gist options
  • Save realeroberto/32607d0a59aa4122afd7b5572c9c5f3b to your computer and use it in GitHub Desktop.
Save realeroberto/32607d0a59aa4122afd7b5572c9c5f3b to your computer and use it in GitHub Desktop.
A self-evaluating Tcl proc.
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