diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-07-08 10:07:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 10:07:16 +0200 |
commit | 17e47f4d8a7fb02b9d4366d4925760e32db4c89a (patch) | |
tree | 93cc313b58e25992117f1f3919495c7168c26fac /dart.html.markdown | |
parent | dc0d862ba917ce9c67cd0c472ac4f25e3f64a726 (diff) | |
parent | 79561a4f43834edf47acf3e3d980aeacabe48d2e (diff) |
Merge pull request #3882 from Hiyorimi/patch-6
[dart/en-en] Updated example 33
Diffstat (limited to 'dart.html.markdown')
-rw-r--r-- | dart.html.markdown | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dart.html.markdown b/dart.html.markdown index e94f1203..291f6764 100644 --- a/dart.html.markdown +++ b/dart.html.markdown @@ -693,7 +693,6 @@ example33() { /// Dart has also added feature such as Null aware operators var isBool = true; var hasString = isBool ?? "default String"; -var hasValue ??= "default Value"; /// Programs have only one entry point in the main function. /// Nothing is expected to be executed on the outer scope before a program |