コード例 #1
0
ファイル: main.cpp プロジェクト: fightingillini5/cs225-1
int main()
{
	//Declare object 'myWriter' of type 'Writer'
	Writer myWriter;

	//Use myWriter's 'PrintToScreen' method to print a message to stdout
	myWriter.PrintToScreen("Congratulations, this works!");	

	//success!
	return 0;
}