Measures Concepts
GitHub icon

Wren

Wren - Programming language

< >

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

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

Try now: TIO

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 · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout