wren_rust 0.1.3

Bindings to the Wren scripting language API
import "get_variable_module"

class GetVariable {
  foreign static beforeDefined()
  foreign static afterDefined()
  foreign static afterAssigned()
  foreign static otherSlot()
  foreign static otherModule()
}

System.print(GetVariable.beforeDefined()) // expect: null

var A = "a"

System.print(GetVariable.afterDefined()) // expect: a

A = "changed"

System.print(GetVariable.afterAssigned()) // expect: changed

var B = "b"
System.print(GetVariable.otherSlot()) // expect: b

System.print(GetVariable.otherModule()) // expect: value