import * as Board from './Board.js' import Agent from './Agent.js' let board = Board.createBoard(10,10); Board.showBoard(board); let agent = new Agent(0,0, 'Right'); agent.showAgent();