Advertisement
tinyevil

Untitled

May 13th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. namespace aa {
  2. // <-
  3. void foo(); // <- This is a declaration scope for foo
  4. // <-
  5. }
  6.  
  7. void foo::a(){
  8. cout << "pwned noob"; // <- This is the definition
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement