39 lines
625 B
Markdown
39 lines
625 B
Markdown
|
|
# Kata Tondeuse
|
|
|
|
Simulate the movement of Tondeuses (mowers) on a rectangular Pelouse (lawn), following a set of instructions.
|
|
|
|
## Requirements
|
|
|
|
- Java 8 or later
|
|
- Maven
|
|
|
|
## Setup
|
|
|
|
Clone this repository
|
|
```bash
|
|
git clone https://github.com/yourusername/katatondeuse.git
|
|
cd katatondeuse
|
|
```
|
|
|
|
|
|
## Running the Application
|
|
|
|
To run the application:
|
|
|
|
```bash
|
|
mvn compile exec:java -Dexec.mainClass="com.qrouland.katatondeuse.Main" -Dexec.args="examples/input.txt"
|
|
```
|
|
|
|
## Running Tests
|
|
|
|
To run all tests :
|
|
|
|
```bash
|
|
mvn test
|
|
```
|
|
|
|
|
|
## License
|
|
|
|
This project is licensed under the WTFPL - Do What The F*** You Want To Public License. |