Skip to content

JBTastic/Sudoku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku in Kotlin

Just a simple Sudoku game I made for fun in Kotlin.

This project only contains Kotlin source files and the executable .jar file.


Dependencies

To successfully compile and run the project, you need:

  • Kotlin Compiler (kotlinc)
  • Java Runtime Environment (JRE)

Kotlin Compiler

The Kotlin compiler (kotlinc) is required to compile the .kt source files into a .jar.

Installation:

Quick install instructions:

Manual download:
Download the latest Kotlin compiler (e.g. kotlin-compiler-2.1.21.zip) from the GitHub Releases.
Unzip it and add the bin directory to your system's PATH to access kotlinc globally.

On UNIX-like systems:
Use SDKMAN! for easy installation and management of Kotlin versions.
Install SDKMAN! with:

curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"

Verify installation by running:

sdk version

Then install Kotlin:

sdk install kotlin

Verify installation by running:

kotlin -version

Java Runtime Environment (JRE)

The Java Runtime Environment is required to run the compiled .jar file.

Installation:

Verify installation by running:

java -version

Usage

Compile the Kotlin source files into a .jar:

./compile.sh

Compile and run the project:

./compile.sh -e

Show help:

./compile.sh --help

If no flag is provided, the script will just compile the project.

About

Simple Terminal Sudoku Game

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors