Skip to content

wren-lang/wren-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1855363 · Apr 9, 2022
Nov 14, 2021
Apr 26, 2021
Aug 1, 2018
Jun 2, 2020
Apr 9, 2022
May 2, 2021
May 21, 2021
Apr 28, 2021
Jun 6, 2020
Jun 6, 2020
May 28, 2020
Jun 5, 2020
Jun 12, 2020
May 29, 2020
Apr 28, 2021

Repository files navigation

Wren CLI

The CLI project is a small and simple REPL and CLI tool for running Wren scripts.

It is backed by libuv to implement IO functionality, and is a work in progress.

For documentation and usage, see http://wren.io/cli
For more information about Wren, the language used by the CLI, see http://wren.io

Like with Wren itself, we welcome contributions.

Build Status


To build the Wren CLI

Windows

The projects/vs20xx folders contain Visual Studio projects.

macOS

The projects/xcode folder contains an Xcode project.

The projects/make.mac folder also contains a make project.
From that folder, run make.

cd projects/make.mac
make

Linux

The projects/make folder contains a make project.
From that folder, run make.

cd projects/make
make

FreeBSD

The projects/make.bsd folder contains a make project.
From that folder, run make.

cd projects/make.bsd
gmake

Alternative build options

The projects are generated by premake, found inside projects/premake.
You can use premake5 (alpha 14 was used) to generate other projects.
Generate other system's projects via the premake --os flag,
i.e if on linux, premake vs2019 --os=windows is valid.