why does the following code snippet ```"foo" > ...
# getting-started
d
why does the following code snippet
Copy code
"foo" > "bar"
magically works in Kotlin REPL and returns a boolean instead of throwing an error or exception? how is it even possible to "compare" strings this way when the same code in Java does not work at all?!
k
d
wow! kotlin magic 🔮
K 1