Top 1,000 Features Creators Resources Blog Explore Download
GitHub icon

Wren

< >

Wren is an open source programming language created in 2013 by Bob Nystrom.

Source code:
git clone https://github.com/munificent/wren
#97on PLDB 11Years Old 8Repos

Try now: TIO

The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.


Example from the web:
System.print("Hello, world!") class Wren { flyTo(city) { System.print("Flying to %(city)") } } var adjectives = Fiber.new { ["small", "clean", "fast"].each {|word| Fiber.yield(word) } } while (!adjectives.isDone) System.print(adjectives.call())
Example from hello-world:
IO.print("Hello World")

Language features

Feature Supported Token Example
Strings ✓ "
"Hello world"
Print() Debugging ✓ IO.print
Comments ✓
// A comment
Line Comments ✓ //
// A comment
Semantic Indentation X

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 624 · feedback@pldb.io