Skip to content

Instantly share code, notes, and snippets.

@realeroberto
Created February 17, 2015 08:40
Show Gist options
  • Save realeroberto/62d5cff52a99eae33bfe to your computer and use it in GitHub Desktop.
Save realeroberto/62d5cff52a99eae33bfe to your computer and use it in GitHub Desktop.
A «self-evaluating» proc in Tcl.
proc x {} { set y "x" }
@realeroberto
Copy link
Author

Let's try it.

% x
x
% [x]
x
% [[x]]
x
% [[[x]]]
x
% [[[[x]]]]
x

And so on…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment