Promises
Creating Promises
def fetch() (
// Fetches a large text file
response = "https://raw.githubusercontent.com/RoturTW/web/refs/heads/main/ram.web/assets/1mb.ram".httpGet()
)
Promise.new(fetch)// Functionally identical to the script above.
Promise.new(def() -> (
response = "https://raw.githubusercontent.com/RoturTW/web/refs/heads/main/ram.web/assets/1mb.ram".httpGet()
))Following Up Promises
myPromise @= Promise.new(fetch)Worker Variables
Variable
Type
Description
Promises and Mainloop
Last updated