Advertisement
cookie_77777

UnitTypes

Dec 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.16 KB | None | 0 0
  1. unit UnitTypes;
  2.  
  3. interface
  4.  
  5. const
  6.   nmax = 10;
  7.  
  8. type
  9.   matrix = array [1..nmax, 1..nmax] of real;
  10.   func = function (x: real): real;
  11.  
  12. implementation
  13.  
  14. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement