void main()

in extension_methods/example/operator_extensions.dart [9:18]


void main() {
  var team = jean + betty;
  team += kay;
  print(team);

  var otherTeam = betty + marlyn;
  if (team > otherTeam) {
    print('The first team ($team) is larger than the other one ($otherTeam).');
  }
}