This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CLOSED = "CLOSED"; | |
const INSUFFICIENT_FUNDS = "INSUFFICIENT_FUNDS"; | |
const OPEN = "OPEN"; | |
const PENNY = 0; | |
const NICKEL = 1; | |
const DIME = 2; | |
const QUARTER = 3; | |
const ONE = 4; | |
const FIVE = 5; |