mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-09-10 22:39:28 -04:00
6 lines
90 B
Mojo
6 lines
90 B
Mojo
def multiply[m: Int](n: Int) -> Int:
|
|
return m * n
|
|
|
|
def main():
|
|
_ = multiply[3](5)
|