Advertisement
Superloup10

temp 1

Aug 28th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. typedef char* string;
  5.  
  6. void println(string value)
  7. {
  8.     printf(value + "\n");
  9. }
  10.  
  11. int main()
  12. {
  13.     println("Bonjour phénix & Superloup10");
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement