Created
October 3, 2022 06:15
-
-
Save lotharschulz/5986fb1c020a60dfe4c59414bcf3b445 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val A_UNTIL_D = ('a' until 'd') | |
// a,b,c | |
@OptIn(ExperimentalStdlibApi::class) | |
val A_NEW_UNTIL_D = ('a' ..< 'd') | |
// a,b,c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment