Programming is cool

Report a typo

Define a constant variable named isProgrammingCool so that the following code that uses this variable prints the correct dialog

Sample Input 1:

Sample Output 1:

— Programming is cool.
— So true!
Write a program in Scala 3
object Main extends App {
/* your code */

println("— Programming is cool.")
println(s"— So $isProgrammingCool!")
}
___

Create a free account to access the full topic