Files
hakorune/apps/result-qmark-demo/main.hako

7 lines
171 B
Plaintext
Raw Normal View History

// ? operator demo with await (Ok path)
// await <expr> returns ResultBox Ok(expr) in this minimal path
local x = (await 42)?
local con = new ConsoleBox()
con.println(x)