mirror of
https://github.com/CPunch/Cosmo.git
synced 2024-11-05 08:10:05 +00:00
15 lines
190 B
Plaintext
15 lines
190 B
Plaintext
class test
|
|
function __init(self, x)
|
|
self.x = x
|
|
end
|
|
|
|
function print(self)
|
|
print(self.x)
|
|
|
|
return self.x
|
|
end
|
|
end
|
|
|
|
var t = test("hello")
|
|
|
|
print(t.print()) |