fork download
  1. class O
  2. attr_accessor :x
  3. end
  4. o = O.new
  5. o.x = 2
  6. x = 2
  7. def draw x
  8. p x
  9. end
  10.  
  11. draw( x -40 )
  12. draw( o.x-40 )
  13. draw( o.x - 40 )
  14. draw( o.x- 40 )
  15. draw( o.x -40 )
Runtime error #stdin #stdout 0s 4760KB
stdin
Standard input is empty
stdout
-38
-38
-38
-38