Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function createLight(){
  2. //work 1
  3. }
  4. function createEarth(){
  5. //work 2
  6. }
  7. function createPlants(){
  8. //work 3
  9. }
  10. function createAnimals(){
  11. //work 3
  12. }
  13.  
  14. function createWorld(){
  15. createLight()
  16. createEarth()
  17. createPlants()
  18. createAnimals()
  19. }
  20.  
  21. function createWorld(){
  22. //create light
  23. //work1
  24. createEarth()
  25. }
  26. function createEarth(){
  27. //work 2
  28. createPlants()
  29. }
  30. function createPlants(){
  31. //work 3
  32. createAnimals()
  33. }
  34. function createAnimals(){
  35. //work 4
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement