sum(x, y) { return x + y; } // This is where the app starts executing. void main() { print(sum(3,5)); // => 8 }