📅  最后修改于: 2022-03-11 14:59:42.690000             🧑  作者: Mango
/*
This is for SCALA!
Anyways, lets say you want to get the user's name. How will you get it?
This is how you will do it:
*/
var name: String = ""
name= readLine("What's your name?") //getting the input!
println("Hello, "+name)