Skip to content

Commit

Permalink
nargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
vezenovm committed Jan 8, 2025
1 parent e3358e3 commit c3948fe
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
global EXPONENTIATE: [[Field; 2]; 2] = [
[1, 1],
[0, 0],
];
global EXPONENTIATE: [[Field; 2]; 2] = [[1, 1], [0, 0]];

fn main(x: Field, y: pub Field) {
let mut acc: Field = 0;
Expand All @@ -25,4 +22,4 @@ fn dummy_again(x: Field, y: Field) {
}
assert(!acc.lt(x));
assert(x != y);
}
}

0 comments on commit c3948fe

Please sign in to comment.