demo/old/cpp_class/main.cpp

18 lines
184 B
C++

#include "test.h"
#include <iostream>
using namespace std;
int main()
{
test t( 3 );
cout << t.getval() << endl;
t.setval( 5 );
cout << t.getval() << endl;
return 0;
}