----
function fn() {
  if (a) b();
  else c();
  return;
}
----
fn = ->
  if a
    b()
  else
    c()
  return
