Files
wren/test/web/future_state.wren
T

14 lines
297 B
JavaScript
Raw Normal View History

// retoor <retoor@molodetz.nl>
import "scheduler" for Scheduler, Future
var future = async { 42 }
System.print(future is Future) // expect: true
var result = await future
System.print(result) // expect: 42
System.print(future.isDone) // expect: true
System.print(future.result) // expect: 42