mirror of
https://github.com/github/semantic.git
synced 2024-11-24 00:42:33 +03:00
14 lines
128 B
Ruby
14 lines
128 B
Ruby
class Object
|
|
def new
|
|
self
|
|
end
|
|
|
|
def inspect
|
|
return "<object>"
|
|
end
|
|
end
|
|
|
|
def puts(obj)
|
|
__semantic_print(obj)
|
|
end
|