aboutsummaryrefslogtreecommitdiffstats
path: root/main2.py
diff options
context:
space:
mode:
Diffstat (limited to 'main2.py')
-rw-r--r--main2.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/main2.py b/main2.py
new file mode 100644
index 0000000..c9bedaf
--- /dev/null
+++ b/main2.py
@@ -0,0 +1,10 @@
+from board2 import *
+
+def main():
+ board =[["*", " ", " ", " ","*", " ", " ", " ","*", " ", " ", " ","*"],[" "," "," "," "," "," "," "," "," "," "," "," "," "],["*", " ", " ", " ","*", " ", " ", " ","*", " ", " ", " ","*"],[" "," "," "," "," "," "," "," "," "," "," "," "," "],["*", " ", " ", " ","*", " ", " ", " ","*", " ", " ", " ","*"],[" "," "," "," "," "," "," "," "," "," "," "," "," "],["*", " ", " ", " ","*", " ", " ", " ","*", " ", " ", " ","*"]]
+ Board=Board(board)
+ Board.print_board()
+
+
+
+main() \ No newline at end of file