File: print_answer.cpp

package info (click to toggle)
python-cmake-build-extension 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 484 kB
  • sloc: python: 504; cpp: 70; sh: 13; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#include <cstdlib>
#include <iostream>

int main()
{
    // Answer to the Ultimate Question of Life, the Universe, and Everything
    std::cout << int('*') << std::endl;
    return EXIT_SUCCESS;
}