I am new to Kotlin (New to the world of programmers) and i am not getting what im doing wrong in this code
Well hello there!
As you know i am new to the world of programmers and i just started learning kotlin
and i dont know why am i not getting the result.
What i expected --> either "your office is closed" or "you are in office"
VS
What i got --> 'Process finished with exit code 0'
No other result, just this.
This is the code:
fun main() {
val hour = 6
val isWeekend = true
var message:String = "nothing"
if(isWeekend) {
message = if ((hour > 9 && hour < 15)) {...