Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Ternary operator in C++

#include <iostream>
using std::cin;
using std::cout;
using std::endl;

int main() {
  int mice = 1;
  cout << "You have "
       << mice
       << (mice == 1 ? " mouse " : " mice ")
       << "in total."
       << endl;
  return 0;
}