9 lines
137 B
Zig
9 lines
137 B
Zig
|
|
fun multiply(x: i64, y: i64) i64 {
|
||
|
|
return x * y;
|
||
|
|
}
|
||
|
|
|
||
|
|
//example call
|
||
|
|
const x: i64 = 4;
|
||
|
|
const y: i64 = 23;
|
||
|
|
_ = multipy(x, y); // --> 93
|