#include "iostream.h"
#include "test.h"

void inCpp(){
	cout<<"I am in C++ again"<<endl;
}

main(){
	cout<<"I am in C++"<<endl;
	testobjc();
	cout<<function(1)<<endl;
	cout<<mywork(1.5)<<endl;
}
