1
1
Fork 0

style(Programming Basics - Summary 1 - Exercises 3 and 4): The commented ouputs added to the Task.kt files

The commented examples of the output added to both of the tasks,
simillar to tasks nearby.

Closes https://youtrack.jetbrains.com/issue/EDC-420
This commit is contained in:
Igor 2021-05-27 15:07:26 +03:00
parent 184b550de0
commit 5962d3a3bc
2 changed files with 13 additions and 2 deletions

View File

@ -13,4 +13,10 @@ fun main() {
println(second(false, false, false))
println(second(false, true, false))
}
}
/* Output:
true
false
false
true
*/

View File

@ -17,4 +17,9 @@ fun main() {
testLong()
testDouble()
testDouble2()
}
}
/* Output:
-9223372036854775808
1.7976931348623157E308
true
*/