Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/examples/null_aware/nullaware1.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ main() {
print('next appointment: $next');

// the ? operator calls a function IFF the object is not null
String thursday;
String? thursday;
var length = thursday?.length;
print('length: $length');

Expand Down
1 change: 1 addition & 0 deletions web/examples/values/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ template: web/templates/_example.mustache

```bash
$ dart values.dart
dartlang
1+1=2
7.0/3.0 =2.3333333333333335
false
Expand Down