6 lines
78 B
Plaintext
6 lines
78 B
Plaintext
unit lib;
|
|
|
|
pub fn call(comptime T: type, v: T) -> T {
|
|
return helper(v);
|
|
}
|