mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-16 07:51:41 -04:00
5 lines
91 B
Plaintext
5 lines
91 B
Plaintext
// Type your code here, or load an example
|
|
square: (x: int) -> int = {
|
|
return x * x;
|
|
}
|