fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. class BuckysClass{
  6. public:
  7. void coolSaying(){
  8. cout << "Some Sentences" << endl;
  9. }
  10. };
  11.  
  12. int main(){
  13. BuckysClass buckysObj;
  14. buckysObj.coolSaying();
  15. return 0;
  16. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
Some Sentences