Skip to content

if block #151

Description

@satyr
if
  a then b
  c then d
  else   e

as:

if a
  b
else if c
  d
else
  e

might make us miss less JS's good ol' cond-exp chain:

r = a ? b
  : c ? d
  : e

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions