Skip to content

Commit

Permalink
Fix string conversion example
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstaeding committed Oct 2, 2023
1 parent 1faa36c commit 0f4b948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lecture/02_Operatoren/listings/string_conversion.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"1337" + 1 // 13371

"1338".toInt() + 1 // 1338
"1337".toInt() + 1 // 1338

"4.2".toDouble() + 0.1 // 4.3

Expand Down

0 comments on commit 0f4b948

Please sign in to comment.