home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / tsetd2.zip / TEMPLATE.DAT < prev    next >
Text File  |  1994-12-14  |  1KB  |  94 lines

  1. SemWare Template file... Do not edit
  2. 1   .s  str
  3. string
  4. 1   .s  int
  5. integer   
  6. 2   .s  sproc
  7. string proc \C()
  8. end
  9. 2   .s  iproc
  10. integer proc \C()
  11. end
  12. 3   .s  main
  13. proc main()
  14.     \c
  15. end
  16. 2   .s  proc
  17. proc \C()
  18. end
  19. 2   .s  if
  20. if (\C)
  21. endif
  22. 2   .s  while
  23. while (\C)
  24. endwhile
  25. 2   .s  repeat
  26. repeat
  27. until \c
  28. 3   .s  loop
  29. loop
  30.     \c
  31. endloop
  32. 2   .s  case
  33. case (\C)
  34. endcase
  35. 3   .c  main
  36. void main(void) {
  37.     \c
  38. }
  39. 2   .c  for
  40. for (\C;;) {
  41. }
  42. 2   .c  if
  43. if (\C) {
  44. }
  45. 2   .c  while
  46. while (\C) {
  47. }
  48. 2   .c  switch
  49. switch (\C) {
  50. }
  51. 2   .prgwhile
  52. do while \c
  53. enddo
  54. 2   .prgif
  55. if \c
  56. endif
  57. 3   .prgcase
  58. do case
  59.     case \c
  60. endcase
  61. 4   .pasprog
  62. program \c
  63.  
  64. begin {  }
  65. end. {  }
  66. 4   .pasproc
  67. procedure \c
  68.  
  69. begin {  }
  70. end; {  }
  71. 4   .pasfunc
  72. function \c
  73.  
  74. begin {  }
  75. end; {  }
  76. 3   .pasif
  77. if \c then begin
  78. end else begin
  79. end; {endif}
  80. 3   .pasrepeat
  81. repeat
  82.   \c
  83. until  ; {endrepeat}
  84. 2   .paswhile
  85. while \c do begin
  86. end; {endwhile}
  87. 2   .pasfor
  88. for \c :=  to  do begin
  89. end; {endfor}
  90. 3   .pascase
  91. case \c of
  92.   else
  93. end; {endcase}
  94.