Cosmo/examples/tostring.cosmo

29 lines
490 B
Plaintext
Raw Permalink Normal View History

2020-12-05 23:58:56 +00:00
proto test
func __init(self, x)
self:setArg(x)
2020-11-13 05:04:09 +00:00
end
2020-11-06 01:53:55 +00:00
func __tostring(self)
let total = 1
for (let i = self.x; i > 0; i = i - 1) do
total = total * i;
end
2020-11-13 05:04:09 +00:00
2021-01-03 23:35:52 +00:00
return "The factorial of " .. self.x .. " is " .. total
end
func setArg(self, x)
self.x = x
2020-11-13 05:04:09 +00:00
end
2020-11-06 01:53:55 +00:00
end
let t = test(1)
for (let x = 1; x < 1000; x = x + 1) do
for (let i = 1; i < 100; i = i + 1) do
t:setArg(i)
2020-11-13 05:04:09 +00:00
2021-01-03 23:35:52 +00:00
print(t)
end
end