1 2 3 4 5
module my_module; import std; auto my_sum(std::size_t a, std::size_t b) -> std::size_t { return a + b; }