new example

This commit is contained in:
Torsten Ruger 2015-10-22 14:43:11 +03:00
parent 91e3a8fc03
commit 9fc354d30f
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
class Object
int puts(Word str)
return str
end
int main()
puts("Hello")
end
end