Skip to content

Commit 1fc61bc

Browse files
committed
Code reformat made.
1 parent adc95d5 commit 1fc61bc

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/Set.kt

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ fun main() {
5151
// average method
5252
println("The average of the element in the set is : ${numberSet.average()}")
5353

54-
5554
/*
5655
Using index functions indexOf(), lastIndexOf() You can get the index of the specified element.
5756

src/String.kt

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ fun main() {
99
// When string type data is addition, the data is written side by side.
1010
println("$x + $y = $z") // 2 + 3 = 23
1111

12-
1312
// String Type A Value
1413
val languageName = "Kotlin"
1514

src/TypeConversions.kt

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ fun main() {
3030
// 54 + 11 = 65
3131
println("number2 = ${number2 + 11}")
3232

33-
3433
// smaller types are NOT implicitly converted to bigger types.
3534
// This means that we cannot assign a value of type Byte to an Int variable without an explicit conversion
3635

0 commit comments

Comments
 (0)