From 4cd4681c2df1f0f9d6aa2dc4c5a8027df830dd33 Mon Sep 17 00:00:00 2001 From: Max Senat Date: Sat, 10 Oct 2020 16:42:00 +0000 Subject: [PATCH] Done. --- lib/display_board.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/display_board.rb b/lib/display_board.rb index d3ac40b..fee0f75 100644 --- a/lib/display_board.rb +++ b/lib/display_board.rb @@ -1 +1,9 @@ # Define a method display_board that prints a 3x3 Tic Tac Toe Board +def display_board + puts " | | " + puts "-----------" + puts " | | " + puts "-----------" + puts " | | " +end +display_board