soml-parser/test/cases/function_definition/simplest_function.tst
Torsten Ruger ab0a94bd51 change type to class name
although int is still allowed for integers (gets replaced though)
2015-10-14 15:48:53 +03:00

14 lines
236 B
Scilab

int foo(Class x)
a = 1
end
-- -- --
s(:statements,
s(:function, :Integer,
s(:name, :foo),
s(:parameters,
s(:parameter, :Class, :x)),
s(:statements,
s(:assignment,
s(:name, :a),
s(:int, 1)))))