9 lines
135 B
Plaintext
9 lines
135 B
Plaintext
// Arithmetic, function calls and imports!
|
|
|
|
fn test<T>(value: T) -> T {
|
|
return value;
|
|
}
|
|
|
|
fn main() -> u32 {
|
|
return test<u32>(15);
|
|
} |