1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-09 08:16:58 +02:00

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

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 {