That would require a new language/syntax layer, which we wanted to avoid. (There's also something to be mentioned for being explicit and reducing "magic," which was part of what drove us to create this library in the first place.)
That said, you could imagine a simple implementation by reflecting on each sub-expression (or auto-lifting operators/functions), where something like `z <- x + y` is compiled to:
z = bind ->
tmp0 = if x instanceof ObsCell then x.get() else x
tmp1 = if y instanceof ObsCell then y.get() else y
tmp0 + tmp1
Rather than forking CoffeeScript for the `<-`, you could start with a simple expression parser: