Skip to content

A CLI/repl tool for Wren written in pure Wren (aMaP)

License

Notifications You must be signed in to change notification settings

NinjasCL-labs/wren-console

 
 

Repository files navigation

Wren Console - wrenc

latest release MIT license wren version 0.4 build status join discord

The Wren Console project is a small and simple REPL and CLI tool for running Wren scripts. It is backed by libuv to implement IO functionality. It is based on the official Wren CLI project and very much a work in progress.

The goals and priorities are slightly different than the Wren CLI project.

  • To be written as much as possible in pure Wren, not C. This greatly simplifies much, expands the list of potential contributors, as makes developing new features faster (for everyone who knows Wren).
  • Provide the best learning environment for the forthcoming Exercism Wren track. For starters this means providing full introspection of stack traces when a Fiber aborts - allowing test suites to show helpful debugging information, including source code snippets. (thanks to @mhermier)
  • Serve as a development playground for good ideas that may or may not ever make it into Wren CLI proper. If much of what we do makes it into Wren CLI, great. If we end up going different directions, that's ok too.

For now the idea is to try to maintain compatibility with whe Wren CLI modules themselves, so that reference documentation may prove useful.

For more information about Wren, the language that Wren Console is embedding, see http://wren.io.

We welcome contributions. Feel free to open an issue to start a discussion or join our Discord. You can also find me on the main Wren Discord as well.


FAQ

Pure Wren? Why?

  • It's higher level and therefore easier to read, write, and iterate than C.
  • It's more than fast enough.
  • I've fallen a bit in love with Wren.
  • It's fun. Is there any better reason?
  • Many (including myself) don't know C nearly well enough to be proficient with major CLI contributions.

Exercism?

Thousands of helpful mentors, hundreds of thousands of fellow students to learn alongside. If you're wanting to learn a new language, improve your Wren, or just sharpen your skills on an entirely different language, Exercism is the place to be.


Usage Examples

Run a script from the console:

$ wrenc ./path_to_script.wren

Evaluate code directly:

$ wrenc -e 'System.print("Hello world")'

Embed inside shell scripting with heredocs:

#!/bin/sh
wrenc /dev/fd/5 < input.txt 5<< 'EOF'
import "io" for Stdin
System.print(Stdin.readLine())
EOF

Start up an interactive REPL session:

$ wrenc

Extended Library Support

Our hope is to extend the libraries available without breaking forwards compatibility - meaning that a script running successfully on Wren CLI should run as-is on Wren Console - but once you start using the newer library features your script may no longer run be backwards compatible with Wren CLI.

wren-package module

Dirt simple package management/dependencies for Wren Console projects.

  • WrenPackage class
  • Dependency class
  • See wren-package for usage details

io module

  • Stderr.write(s) - Write a string to srderr
  • Stderr.print(s) - Write a string to stderr followed by a newline

os module

  • Process.exec(command, [arguments, [workingDirectory, [environment]]]) - Run an external command and display it's output
  • Process.exit() - Exit immediately with 0 status code
  • Process.exit(code) - Exit immediately with the specified exit status code. (wren-lang#74)

runtime module

Retrieve details about the runtime environment.

  • Runtime.NAME - The runtime name
  • Runtime.VERSION - The runtime version number
  • Runtime.WREN_VERSION - The Wren version the runtime is built against
  • Runtime.details - retrieve additional details about the runtime environment

mirror module

Experimental. See wren-lang/wren#1006.

  • Mirror.reflect(object) - Reflect on an object
  • Mirror.reflect(class) - Reflect on a class
  • Mirror.reflect(fiber) - Reflect on a fiber, it's stacktrace, etc.

essentials module

Wren Console includes the Wren Essentials library built right into the binary.

  • Time.now() - number of milliseconds since Epoch
  • Time.highResolution() - high resolution time counter (for benchmarking, etc.)
  • Strings.upcase(string) - convert an ASCII string to uppercase
  • Strings.lowercase(string) - convert an ASCII string to lowercase

Installing

If you're using Homebrew we have a tap for you. Otherwise you can check out our binary releases or simply build from source.

With Homebrew:

brew tap exercism/wren
brew install wren-console

Building from source

Pre-requisites

  • Git clone the wren-essentials project (link) into deps (TODO: vendor?)

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.


About

A CLI/repl tool for Wren written in pure Wren (aMaP)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 31.5%
  • C++ 29.1%
  • Makefile 26.9%
  • Python 10.1%
  • Lua 2.4%