Skip to content
This repository has been archived by the owner on Apr 12, 2019. It is now read-only.

Commit

Permalink
Implement Class#new
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Arcieri committed Dec 18, 2010
1 parent 63f1328 commit 9e7b74b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/builtins/class.re
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,9 @@
# The Reia metaclass # The Reia metaclass
class Class class Class
# Create a new instance of this class
def new; Class(); end

# Name of this class as a string
def name; "Class"; end def name; "Class"; end


# String representation of this class # String representation of this class
Expand Down

0 comments on commit 9e7b74b

Please sign in to comment.