mirror of
https://github.com/CPunch/Cosmo.git
synced 2024-11-05 08:10:05 +00:00
CPunch
8ac8085d20
- 'var' has some weird scoping connotations with users of JS. better to change it to 'let', which will decide whether to make the variable a local or a global - 'func' looks visually appealing lol - some minor refactoring done in cparse.c
15 lines
231 B
Plaintext
15 lines
231 B
Plaintext
proto Test
|
|
func __init(self, x)
|
|
self.x = x
|
|
end
|
|
|
|
func print(self)
|
|
print(self.x)
|
|
end
|
|
end
|
|
|
|
// stressing the GC
|
|
for (let i = 0; i < 100000; i++) do
|
|
let x = Test("Hello world " .. i)
|
|
x:print()
|
|
end |