|
What do you mean, Doesn't make sense for interpreted languages, source code is source code in the same language. That means if you code something in C++ on a windows machine then its still in C++ on a mac or linux machine, therefore open source works out.
__________________
Help me out and get rewards , K.O. Hosting
#include <iostream>
using namespace std;
int main()
{
int name;
cout << "Please enter your name: " << endl;
cin >> name;
cout << "Hello " << name << " Please go jump off a cliff !!" << endl;
return 0;
}
|