I hope Swift fixes the case where I use variadics, because this ugly

This commit is contained in:
Erik 2015-06-08 20:24:57 -04:00
parent 7bf35e182c
commit 66622fffb3

View File

@ -15,7 +15,7 @@ socket.on("currentAmount") {data, ack in
socket.emit("update", ["amount": cur + 2.50])
}
ack?("Got your currentAmount", "dude")
ack?(["Got your currentAmount", "dude"])
}
}