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:
commit
7579a441f7
|
@ -13,4 +13,10 @@ fun main() {
|
||||||
|
|
||||||
println(second(false, false, false))
|
println(second(false, false, false))
|
||||||
println(second(false, true, false))
|
println(second(false, true, false))
|
||||||
}
|
}
|
||||||
|
/* Output:
|
||||||
|
true
|
||||||
|
false
|
||||||
|
false
|
||||||
|
true
|
||||||
|
*/
|
|
@ -17,4 +17,9 @@ fun main() {
|
||||||
testLong()
|
testLong()
|
||||||
testDouble()
|
testDouble()
|
||||||
testDouble2()
|
testDouble2()
|
||||||
}
|
}
|
||||||
|
/* Output:
|
||||||
|
-9223372036854775808
|
||||||
|
1.7976931348623157E308
|
||||||
|
true
|
||||||
|
*/
|
Loading…
Reference in New Issue