From 654725975f9c2adf9cfccb6f20de2cf94001d0d1 Mon Sep 17 00:00:00 2001 From: Hieu Le Date: Sat, 9 May 2020 05:38:34 +0000 Subject: [PATCH] Done. --- lib/display_board.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/display_board.rb b/lib/display_board.rb index d3ac40b5e..6bc9b588b 100644 --- a/lib/display_board.rb +++ b/lib/display_board.rb @@ -1 +1,10 @@ # Define a method display_board that prints a 3x3 Tic Tac Toe Board +def display_board + puts " | | " + puts "-----------" + puts " | | " + puts "-----------" + puts " | | " +end + +display_board