add fibonacci implementations to integration tests

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-03-26 09:46:47 +01:00
parent a76c5578cc
commit 2865676323
3 changed files with 91 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ pragma solidity ^0.8.24;
contract Flipper {
bool coin;
function flip() public payable {
function flip() public {
coin = !coin;
}
}