A simple Rock Paper Scissors game written in Kotlin.
- Choose 1 for Rock, 2 for Paper, or 3 for Scissors
- Play 3 rounds against the computer
- See who wins at the end!
```bash kotlinc RockPaperScissors.kt -include-runtime -d RockPaperScissors.jar java -jar RockPaperScissors.jar ```
```bash kotlin RockPaperScissors.kt ```
- Rock beats Scissors
- Scissors beats Paper
- Paper beats Rock
- `RockPaperScissors.kt` - Main game file > README.md