Guest User

Untitled

a guest
Apr 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Testicek
  2. def initialize(code)
  3. @code = code
  4. @sold = 0
  5.  
  6. unless @code =~ /(^P|Q|R|S|T)(A|E|I|O|U)[001-450$]/
  7. raise Exception.new("#{@code}: Not enough items in store")
  8. end
  9. end
  10. end
  11.  
  12. t = Testicek.new("fsdfdsf")
Add Comment
Please, Sign In to add comment