mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
18 lines
470 B
C++
18 lines
470 B
C++
|
|
#include <iostream>
|
||
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
int main (int argc, char* argv[]) {
|
||
|
|
|
||
|
|
std::string poem = "'Treasure' by Lucillius\n\n"
|
||
|
|
"\tThey call thee rich; I deem thee poor;\n"
|
||
|
|
"\tSince, if thou dares not use thy store,\n"
|
||
|
|
"\tBut saves only for thine heirs,\n"
|
||
|
|
"\tThe treasure is not thine, but theirs.\n";
|
||
|
|
|
||
|
|
// Print it.
|
||
|
|
std::cout << poem << std::endl;
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|