remove comments

Report a typo

Given a program with commented code. Uncomment it so that the program outputs:

Hola!
Salute!
Ciao!

Sample Input 1:

Sample Output 1:

Hola!
Salute!
Ciao!
Write a program in Scala 3
/*
println("Hello!")
println("Hola!")
println("Salute!")
*/
println("Ciao!")
___

Create a free account to access the full topic