#include <southern.h> // headerfile with the deffinition of the southern class
anonymous
February 19 2004, 23:04:17 UTC
#include using namespace std;
//don't know if you know C++ at all.. my room mate and i are trying to impliment a //southern class into the standard C library... //(im not racist! its only james from hs....)
void main() { bill = white_male(34); //defines bill as a white male at 34 years old doyl = nig_male(24); //defines doyl as a black male at 24 years old
south.hang(bill, doyl); //calls the public function hang(, ) of the southern class
cout << south.stats(doyl); // will output "hanged by bill" to the console. cout << south.stats(bill); /* will output "happy to kill off another one of his missbehaving slaves" to the console. */
Comments 3
Reply
Reply
using namespace std;
//don't know if you know C++ at all.. my room mate and i are trying to impliment a
//southern class into the standard C library...
//(im not racist! its only james from hs....)
void main()
{
bill = white_male(34); //defines bill as a white male at 34 years old
doyl = nig_male(24); //defines doyl as a black male at 24 years old
south.hang(bill, doyl); //calls the public function hang(, ) of the southern class
cout << south.stats(doyl); // will output "hanged by bill" to the console.
cout << south.stats(bill); /* will output "happy to kill off another one of his missbehaving slaves" to the console. */
return;
}
Reply
Leave a comment