sol2ligo icon indicating copy to clipboard operation
sol2ligo copied to clipboard

do while support

Open vird opened this issue 3 years ago • 0 comments

contract Test {
  
  function test() public {
    uint sum;
    uint j;
    
      do {
        sum +=j;
        j++;
      } while (j < 10);
    }     
}

vird avatar Nov 10 '20 08:11 vird