You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❯ cat test.rhai
fn a(x) { x + " a" }
fn b(x) { x + " b" }
fn c(x) { x + " c" }
print(c(b(a("hello"))));
print (
"hello"|> a
|> b
|> c
);
❯ rhai test.rhai
hello a b c
hello a b c