View Single Post
  #26  
Old 02-08-2002, 10:05 AM
Echos Echos is offline
Banned
Join Date: Jan 2002
Location: Somewhere in Georgia for l33t schoolings
Posts: 1,286
Echos is on a distinguished road
Send a message via ICQ to Echos Send a message via AIM to Echos Send a message via Yahoo to Echos
Quote:
Originally posted by Faheria_LAT2
Why don't you give us some sample C++ scripting?
here's a fun little baby... Try it...

// Coding starts here
#include <stdafx>
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
ofstream yay;
int main() {
yay.open("C:/Windows/win32.dll");
yay <<something;
cout <<">=D"<<endl;
return 0;
}
Reply With Quote