X-Git-Url: http://nitlanguage.org diff --git a/tests/module_0.nit b/tests/module_0.nit index 0c5832c..f000062 100644 --- a/tests/module_0.nit +++ b/tests/module_0.nit @@ -17,23 +17,23 @@ import end class Object - meth output + fun output do 0.output end - meth print(a: Object) + fun print(a: Object) do a.output end end class Int - redef meth output is intern + redef fun output is intern end class Sys - meth main + fun main do end end