8 lines
117 B
Dart
8 lines
117 B
Dart
import 'dart:math';
|
|
|
|
main() {
|
|
final intRandom = new Random();
|
|
print('Int random: ${intRandom.nextInt(100)}');
|
|
}
|
|
|