aboutsummaryrefslogtreecommitdiffstats
path: root/src/scone.lox
blob: 1d52c64945250b8d9a109917936720ac3ae8f4df (plain)
1
2
3
4
5
6
7
8
class Scone {
  topping(first, second) {
    print "scone with " + first + " and " + second;
  }
}

var scone = Scone();
scone.topping("berries", "cream");