Advertisement
Guest User

Exemple kooc

a guest
Oct 28th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @module lolz
  2. {
  3. int a = 3;
  4. void func(float b);
  5. }
  6.  
  7. @implementation lolz
  8. {
  9. void func(float b)
  10. {
  11. [code]
  12. }
  13. }
  14.  
  15. en C :
  16.  
  17. (J'ai pas fait le mangling si jamais)
  18.  
  19. .h
  20. extern int a; //mais ca pour le moment ca marche pas, je l'ai pas fini. ça donne extern int a = 3; mais fait comme si c'était bon
  21.  
  22. .c
  23. a = 3; // je crois que c'est ça
  24. void func(float b)
  25. {
  26. [code]
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement