RosettaCodeData/Task/Empty-string/Dart/empty-string.dart

12 lines
144 B
Dart
Raw Permalink Normal View History

2014-04-02 16:56:35 +00:00
main() {
var empty = '';
if (empty.isEmpty) {
print('it is empty');
}
if (empty.isNotEmpty) {
print('it is not empty');
}
}