8 lines
82 B
Dart
8 lines
82 B
Dart
|
|
main() {
|
||
|
|
int i=42;
|
||
|
|
int j=41;
|
||
|
|
|
||
|
|
Expect.equals(42,i);
|
||
|
|
Expect.equals(42,j);
|
||
|
|
}
|