wren-swift

develop

The wren scripting language as a Swift package, w/ some Swift API wrappers
helje5/wren-swift

swift-wren

A Swift package and wrapper for the wren scripting language. There is a good QA on wren. It's a very small embeddable language similar to Lua, but w/o the weirdness.

A major thing missing in wren is reentrancy with the host environment. Another issue is that host functions do not get any function environment, i.e. no function specific userdata pointer, or other means which would allow a trampoline. PRs are still welcome, and we'll see where wren is going in the future.

This SwiftPM package embeds Wren itself, i.e. it contains the amalgation in a vendored branch.

What does it look like?

The example from the QA:

class Account {
  construct new(balance) { _balance = balance }
  withdraw(amount) { _balance = _balance - amount }
}

var account = Account.new(1000)
account.withdraw(100)

What does the Swift Wrapper look like

Hello world:

let vm = WrenVM()
try vm.interpret(
  """
  System.print("I'm running in a VM!")
  """
)

Using dynamicCallable:

let vm = WrenVM()
try vm.main.System.print("Hello World!")

Links

Who

swift-wren is brought to you by the Always Right Institute and ZeeZide. We like feedback, GitHub stars, cool contract work, presumably any form of praise you can think of.

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Wed Mar 13 2024 06:58:38 GMT-0900 (Hawaii-Aleutian Daylight Time)