brintos

brintos / llvm-project-archived public Read only

0
0
Text · 202 B · b5bc654 Raw
16 lines · plain
1#include "bytes.h"2#include "words.h"3 4int main() {5  bool result = false;6  if (loopBytes())7    result |= true;8  if (loopWords())9    result |= true;10 11  if (result)12    return 0;13 14  return result;15}16