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
#Create a Boggle Board Class using the methods created in BoggleBoardArray.rb | |
class BoggleBoard | |
attr_accessor :board | |
def initialize(board) | |
@board = board | |
end | |
def create_word(*coords) #I think the * in front of coords significes that there are mulitiple such variables that can be passed as arguments |