RosettaCodeData/Task/Assertions/Dart/assertions-1.dart
2023-07-01 13:44:08 -04:00

4 lines
46 B
Dart

main() {
var i = 42;
assert( i == 42 );
}