Skip to content

Instantly share code, notes, and snippets.

@nsmmrs
Created February 12, 2025 04:29
Show Gist options
  • Save nsmmrs/20eb52c1ea3de2459a19f600ebd256b1 to your computer and use it in GitHub Desktop.
Save nsmmrs/20eb52c1ea3de2459a19f600ebd256b1 to your computer and use it in GitHub Desktop.
Dart null safety
void main() {
final List<List<int>> grid = [
[1,2,3],
[4,5,6],
];
// I thought this would fail to compile
// since grid[2] could be null:
print(grid[2][3]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment