Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.27 KB | None | 0 0
  1. # To change this template, choose Tools | Templates
  2. # and open the template in the editor.
  3.  
  4. module SeniorSeminar
  5.   class Board
  6.     attr_reader :dimensions
  7.     def initialize dimen
  8.       @dimensions = [dimen, dimen]
  9.     end
  10.  
  11.     def empty?
  12.       true
  13.     end
  14.   end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement