You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
196B

  1. #pragma once
  2. namespace stuff {
  3. int calculate(int a, int b) {
  4. int result = a + b;
  5. if (result == 42) {
  6. return result;
  7. } else {
  8. return 42;
  9. }
  10. }
  11. } // namespace stuff