#!/usr/bin/python3 from .board import Board def main() -> None: board = Board.default_puzzle print(board) if __name__ == "__main__": main()