<@UA47DJYDP> The `readLine` function returns `Stri...
# getting-started
m
@Surya Poojary The
readLine
function returns
String?
. You need to check for null with this:
readLine()?.toInt()
. This will set
age
to null if
readLine
returns null.