All pastes #388844 Raw Edit

Spunky

public cpp v1 · immutable
#388844 ·published 2007-03-10 10:00 UTC
rendered paste body
#include <iostream>int main(){	std::cout << "Hello world!\n"; // Prints "hello world" to the screen.		std::cin.ignore(std::cin.rdbuf()->in_avail() + 1);	return 0;}