zmunm
a?.let { 1.plus(1) } // can be replaced with `if (a == null) 1.plus(1)`
a?:let { 1.plus(1) } // can be replaced with `if (a == null) 1.plus(1)` a?.let { 1.plus(1) } // can be replaced with `if (a != null) 1.plus(1)`
Brais Gabin
A modern programming language that makes developers happier.