Created
March 16, 2022 17:47
-
-
Save enzoz/07910ad53226ed11fa6ddbeeb640bc07 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
| void main() { | |
| const value = 'a' ?? 'b'; | |
| const anotherValue = 'a' ?? null; | |
| const anotherValueAgain = null ?? 'b'; | |
| print('value $value'); | |
| print('anotheValue $anotherValue'); | |
| print('anotheValueAgain $anotherValueAgain'); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment