summaryrefslogtreecommitdiff
path: root/Tools/LuaMacro/tests/test-proto.lua
blob: 753c9fdd4b0e5c1018264d41d1ae6c66f13067ee (plain)
1
2
3
4
5
6
7
8
9
10
require_ "proto"

Function bonzo (a: number, b: string) : string
    return a .. b
end

print (bonzo(10,"hello"))
print (bonzo("hello"))  ---> blows up!