Skip to content

Commit

Permalink
Update ex2-8.md
Browse files Browse the repository at this point in the history
Code amended to reflect QC2 section 1.9
  • Loading branch information
tastethedream authored Dec 5, 2022
1 parent 8f71232 commit 76f3a6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ch02/ex2-8.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

```dart
void main(){
int? ten = null;
print ('ten: $ten');
int ?myVariable;
print ('ten: $myVariable');
ten = 10;
print ('ten: $ten');
myVariable = 10;
print ('ten: $myVariable');
}
```

0 comments on commit 76f3a6f

Please sign in to comment.