method.lox 155 B

12345678
  1. class Scone {
  2. topping(first, second) {
  3. print "scone with " + first + " and " + second;
  4. }
  5. }
  6. var scone = Scone();
  7. scone.topping("berries", "cream");