moved examples to examples folder

This commit is contained in:
2020-11-13 17:50:55 -06:00
parent 928b01f52c
commit 4ff1e59042
6 changed files with 1 additions and 8 deletions

26
examples/test.cosmo Normal file
View File

@@ -0,0 +1,26 @@
class test
function __init(self, str)
self.hello = str
end
function print(self, i)
var str = self.hello
for (var x = i; x > 0; x=x-1) do
str = str .. "!"
end
print(str)
end
end
var obj = test("Hello world")
for (var i = 1; i <= 1; i=i+1) do
obj.print(i)
end
test.debug = function(self)
print("hi from " .. self)
end
obj.debug()