Advertisement
ProToTN

Untitled

Jan 23rd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.35 KB | None | 0 0
  1. Function Goat(X:Integer):Integer;Forward;
  2. Function Zaxs(Y:Integer):Integer;
  3. Begin
  4.   Zaxs:=Goat(X)+6;
  5. End;
  6. Function Goat;
  7. Begin
  8.   Goat:=Zaxs(X)+4;
  9. End;
  10. ----------------------------------------------------------------
  11. Function Goat(X:Integer):Integer;
  12. Begin
  13.   Goat:=Zaxs(X)+6;
  14. End;
  15.  
  16. Function Zaxs(X:Integer):Integer;
  17. Begin
  18.   Zaxs:=Goat(X)+4;
  19. End;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement