function squareNumber(x) {
return x * x;
}
/*
Inputs:
x = 7
Outputs:
y = 49
*/
function printSquareOfNumber(x) { let square = x * x; println("Square: " + square); } /* Inputs: x = 7 Outputs: None Task Description: Prints square of input x */
function getHelloWorld() {
return "Hello World";
}
/*
Inputs:
None
Outputs:
Returns string "Hello World"
*/
function computeArea(width, height) return width * height
zzzzzzzzzzzzzzzzzzzzzz10yyyyyy2 function computeArea(width, height) wwwwwwwwwwwwwwww10vvvvvvv2 return width * height
zzzzzzzzzzzzzzzzzzzzzzz5yyyyyy3 function computeArea(width, height) wwwwwwwwwwwwwwwww5vvvvvvv3 return width * height