We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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)) }