fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. class player
  6. {
  7. public:
  8.  
  9. int speed;
  10.  
  11. };
  12.  
  13. int main()
  14. {
  15.  
  16. player ramy;
  17.  
  18. ramy.speed =2;
  19.  
  20. cout <<ramy.speed;
  21.  
  22.  
  23. return 0;
  24. }
  25.  
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
2