Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement else if control flow #1211

Merged
merged 1 commit into from Mar 20, 2020
Merged

Implement else if control flow #1211

merged 1 commit into from Mar 20, 2020

Conversation

danobi
Copy link
Member

@danobi danobi commented Mar 16, 2020

Before, you could do:

if (<cond>)
{
    <stmt>
}
else
{
  if (<cond2>)
  {
    <stmt2>
  }
}

Now, you can do:

if (<cond>)
{
    <stmt>
}
else if (<cond2>)
{
    <stmt2>
}

This makes things more natural for programmers coming from C-ish
languages.

Before, you could do:

    if (<cond>)
    {
        <stmt>
    }
    else
    {
      if (<cond2>)
      {
        <stmt2>
      }
    }

Now, you can do:

    if (<cond>)
    {
        <stmt>
    }
    else if (<cond2>)
    {
        <stmt2>
    }

This makes things more natural for programmers coming from C-ish
languages.
@fbs fbs merged commit 34fc280 into iovisor:master Mar 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants