6 lines
74 B
Plaintext
6 lines
74 B
Plaintext
function main() {
|
|
var num1 = 5;
|
|
var num2 = 4;
|
|
return num1 * num2;
|
|
}
|