summaryrefslogtreecommitdiff
path: root/tests/exec/bool.cpp
blob: 1f42999422d95667106dbff75d9a6373fc434e93 (plain) (blame)
1
2
3
4
5
6
#include <iostream>

int main() {
  std::cout << true << "\n";
  std::cout << false << "\n";
}