Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. class BallClass{
  6. public:
  7. string name;
  8. };
  9.  
  10.  
  11. int main()
  12. {
  13. BallClass jo;
  14. jo.name = "kek";
  15. cout << bo.name;
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement