Update dart.html.markdown

This commit is contained in:
Ho Chin Chee 2019-12-27 11:21:13 +08:00 committed by GitHub
parent a068a103f5
commit 2a887480d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,7 +211,7 @@ example14() {
// statically typed null can not be convert to bool
var c = "abc";
c = null;
// complie failed
// compile failed
// if (c) {
// print("true, c is $c");
// } else {