str/neq
String inequality — true when two strings differ
const app = mvfm(prelude);
const prog = app({ a: "string", b: "string" }, ($) => {
return $.neq($.input.a, $.input.b);
});
await fold(defaults(app), injectInput(prog, { a: "hello", b: "world" })); Ctrl+Enter