G++ gurus on first try
22-Jan-95 19:50:55
Sb: #45307-G++ gurus on first try
Fm: Brian Simmons/CO 73447,3044
To: Peter Wade 100265,2740
In the docs it says the compiler and programs set their own stack size. I have
a A2000/GVP 030 50Mhz, 8 megs memory. 700 meg disk. I downloaded all of the
files listed in your library (the 020 versions) , decompressed them according
the the instructions in the readme file, and tried the hello world program and
a program from a book:
#include<iostream>
class myclass {
public:
int a;
}
main() {
myclass obj1,obj2;
obj1.a=10;obj2.a=99;
cout << obj1.a << "\n";
cout << obj2.a << "\n"; }