-------------------------------------------------------------------------
| 28 | { |
| 29 | //------------------------------------------------------------------------- |
| 30 | bool IsOdd(int n) |
| 31 | { |
| 32 | if (n % 2 == 0) |
| 33 | return true; |
| 34 | |
| 35 | return false; |
| 36 | } |
| 37 | |
| 38 | //------------------------------------------------------------------------- |
| 39 | fs::path GetMainCppPath() |