Created
March 14, 2023 09:39
-
-
Save JIghtuse/c27b9e714bcb66cbd24133d64f657d10 to your computer and use it in GitHub Desktop.
Dart void?
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() { | |
int? x = 42; | |
print(x); | |
void? v; // compile error | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment