Advertisement
magik6000

Untitled

Feb 4th, 2014
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. IN:
  2. //var xx
  3. var a//var uu
  4. /* dfdg */
  5. var b = 2
  6. fuction f(b, c)var d = c - 1 if(b > c)
  7. return d end return b end a = 3+ b
  8. DSP(f(8,b))
  9. var d = f(b,8)
  10. --------------
  11. Stage 1:
  12. var a
  13. var b = 2
  14. fuction f(b, c)var d = c - 1 if(b > c)
  15. return d end return b end a = 3+ b
  16. DSP(f(8,b))
  17. var d = f(b,8)
  18. --------------
  19. S:var
  20. S:a
  21. S:var
  22. S:b
  23. S:
  24. C:=
  25. S:2
  26. S:fuction
  27. S:f
  28. C:(
  29. S:b
  30. C:,
  31. S:c
  32. C:)
  33. S:var
  34. S:d
  35. S:
  36. C:=
  37. S:c
  38. S:
  39. C:-
  40. S:1
  41. S:if
  42. C:(
  43. S:b
  44. S:
  45. C:>
  46. S:c
  47. C:)
  48. S:return
  49. S:d
  50. S:end
  51. S:return
  52. S:b
  53. S:end
  54. S:a
  55. S:
  56. C:=
  57. S:3
  58. C:+
  59. S:b
  60. S:DSP
  61. C:(
  62. S:f
  63. C:(
  64. S:8
  65. C:,
  66. S:b
  67. C:)
  68. S:
  69. C:)
  70. S:var
  71. S:d
  72. S:
  73. C:=
  74. S:f
  75. C:(
  76. S:b
  77. C:,
  78. S:8
  79. C:)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement