Skip to content

Instantly share code, notes, and snippets.

@JIghtuse
Created March 14, 2023 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JIghtuse/c27b9e714bcb66cbd24133d64f657d10 to your computer and use it in GitHub Desktop.
Save JIghtuse/c27b9e714bcb66cbd24133d64f657d10 to your computer and use it in GitHub Desktop.
Dart void?
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