Source
object
Main
extends
App
{
var
age
=
19
if
(
age
<
20
)
{
println
(
"未成年です"
)
}
else
{
println
(
"成人です"
)
}
}