blob: 012401b0f997c102ee3e42a3ebdda16ecd1409ef [file] [log] [blame]
library test;
import 'dart:math';
f() {}
main() {}
num myMax(num x, num y) => max(x, y);
void printDouble(double x) => print(x);
void printInt(int x) => print(x);