mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 07:06:47 +08:00
10 lines
No EOL
156 B
C++
10 lines
No EOL
156 B
C++
#include <iostream>
|
|
#include <unistd.h>
|
|
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
int main() {
|
|
cout << "Greetings from: " << getpid() << endl;
|
|
return 0;
|
|
} |