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.
You can use namespaces to further organize code. If you know C++ this should look pretty familiar:
namespace math { func sub(a: Int, b: Int) -> Int { return a - b } } func main() { std::print_int(math::sub(10, 3)) }