Files
compiler-explorer/examples/dart/default.dart
2022-02-11 16:19:16 +01:00

9 lines
170 B
Dart

// Type your code here, or load an example.
int square(int num) {
return num * num;
}
int main(List<String> args) {
return square(int.fromEnvironment("input"));
}