Skip to content

Commit

Permalink
Merge pull request #8 from rosera/tastethedream-patch-6
Browse files Browse the repository at this point in the history
Update ex2-8.md
  • Loading branch information
rosera authored Dec 15, 2022
2 parents 142b789 + 76f3a6f commit f5947ef
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 f5947ef

Please sign in to comment.