Skip to content

Instantly share code, notes, and snippets.

@kosugi
Created June 27, 2015 07:18
Show Gist options
  • Select an option

  • Save kosugi/ec07c5f0313dba7c015c to your computer and use it in GitHub Desktop.

Select an option

Save kosugi/ec07c5f0313dba7c015c to your computer and use it in GitHub Desktop.
# coding: utf-8
def fact(n); (n==1)? 1: n*fact(n-1); end;
class Fixnum; def !(); fact(self); end; end
print 3.!.!.!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment