Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. main
  2. {
  3. const UneConstante;
  4.  
  5. func(UneConstante);
  6. }
  7.  
  8. function MaFonction(var)
  9. {
  10. return var * 2;
  11. }
  12.  
  13. OU ENCORE
  14.  
  15. const UneConstante;
  16.  
  17. main
  18. {
  19.  
  20. func();
  21. }
  22.  
  23. function MaFonction()
  24. {
  25. return UneConstante * 2;
  26. }
  27.  
  28. OU ENCORE
  29.  
  30.  
  31. main
  32. {
  33. func();
  34. }
  35.  
  36. function MaFonction()
  37. {
  38. const UneConstante;
  39. return UneConstante * 2;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement