Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

contract test {
  function f(bool condition) public return (int) {
    int x;
    int y = 5;
    if (condition) {
      x = 102;
    }

   return x;
}
}

...