summaryrefslogtreecommitdiff
path: root/lib/mastermind/game.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mastermind/game.rb')
-rw-r--r--lib/mastermind/game.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/mastermind/game.rb b/lib/mastermind/game.rb
new file mode 100644
index 0000000..86ed115
--- /dev/null
+++ b/lib/mastermind/game.rb
@@ -0,0 +1,12 @@
+# game.rb
+module Mastermind
+ class Game
+ def initialize(messenger)
+ @messenger = messenger
+ end
+ def start
+ @messenger.puts "Welcome to Mastermind!"
+
+ end
+ end
+end