2024-11-21 π programmerhumor β RE: AVincentInSpace
Itβs a shorthand for writing this:
variable = if (input != null) input else default
This is equivalent:
variable = input ?: default
2024-11-21 AVincentInSpace β edited β 1π¬
Huh. Neat feature. Thatβs in C# I assume?
ββββ
ββββ