v0.1.0-alpha.24
Published August 25, 2026
Download the latest release archive for your platform, extract it,
and run jik.
C:\tools\jik.PATH.jik help
PATH.mkdir -p "$HOME/.local/share/jik"
curl -L -o /tmp/jik-linux-x64.tar.gz \
https://github.com/jik-lang/jik/releases/download/v0.1.0-alpha.24/jik-v0.1.0-alpha.24-linux-x64.tar.gz
tar -xzf /tmp/jik-linux-x64.tar.gz -C "$HOME/.local/share/jik" --strip-components=1
export PATH="$HOME/.local/share/jik:$PATH"
jik help
Note: the Linux x64 archive requires glibc 2.34 or newer. On older WSL/Linux distributions, use a newer distro image or build Jik from source.
To make jik available in new terminals, add
$HOME/.local/share/jik to your shell startup file.
jik run and jik build need a host C compiler.
Configure one either by using the --cc CLI option or (recommended) by setting the JIK_CC environment variable.
For a simple Windows setup, install MinGW-w64 GCC from WinLibs,
add its bin directory to PATH, and set
JIK_CC=gcc (for example: set JIK_CC=gcc).
Create a file named hello.jik:
func main():
println("Hello, Jik!")
end
Run it with jik run hello.jik. If you do not want to use
JIK_CC, run it with jik run hello.jik --cc clang.
After the compiler is installed, see the
Packages page for official package setup,
JIK_PKG_PATH configuration, and import examples.
Download the .vsix file from the same release and install
it from VS Code's Extensions view, or from a terminal.
code --install-extension jik-language-tools-*.vsix