1
1
Fork 0

Merge pull request #13 from Geravant/igor/programming-basics-summary1-exercises3-4-EDC-420

style(Programming Basics - Summary 1 - Exercises 3 and 4): The commen…
This commit is contained in:
Svetlana Isakova 2021-07-19 15:42:13 +02:00 committed by GitHub
commit 7579a441f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 2 deletions

View File

@ -14,3 +14,9 @@ fun main() {
println(second(false, false, false))
println(second(false, true, false))
}
/* Output:
true
false
false
true
*/

View File

@ -18,3 +18,8 @@ fun main() {
testDouble()
testDouble2()
}
/* Output:
-9223372036854775808
1.7976931348623157E308
true
*/