multiple_contracts.sol 237 B

12345678910111213
  1. contract A {
  2. /// foo simply returns true
  3. function foo() public returns (bool) {
  4. return true;
  5. }
  6. }
  7. contract B {
  8. /// bar simply returns false
  9. function bar() public returns (bool) {
  10. return false;
  11. }
  12. }