We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Synopsis:
mod foo { overload fn f(int x) { log x; } } mod bar { overload fn f(str s) { log s; } } import foo::f; import bar::f; fn main() { f(3); f("hello world"); }
Result:
3 hello world