diff options
author | Patrick Simianer <p@simianer.de> | 2014-06-01 23:26:43 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-06-01 23:26:43 +0200 |
commit | 3b0d4622865e71c49c4efc4db4ac35538a373a47 (patch) | |
tree | 722ab034f381a357e84d0bf151928ea3db296a80 /animate.rb | |
parent | af62fcca3729c9763c374520e1665f782bbbdf42 (diff) |
externalize grammar.rb
Diffstat (limited to 'animate.rb')
-rw-r--r-- | animate.rb | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/animate.rb b/animate.rb deleted file mode 100644 index 558146f..0000000 --- a/animate.rb +++ /dev/null @@ -1,17 +0,0 @@ -s = 'ich sah ein kleines haus .' -def visit n, depth, skip=0 # FIXME - (depth-skip).times { |i| - i += skip - 0.upto(n-(i+1)) { |j| - yield j, j+i+1 - } - } -end - -0,5 - - -1 2 -0,1 1,2 2,3 3,4 4,5 -ich sah ein kleines haus - |