summaryrefslogtreecommitdiff
path: root/Examples/javascript/overload/runme.js
blob: 1c23e3b6bb73f5933db528cf48f800f85b217e45 (plain)
1
2
3
4
5
6
7
8
9
var example = require("example");

example.f();
example.f(1);
example.f(1, 2);
example.f("bla");
example.f(false);
example.f(11111111111);
example.f_double(1.0);