Advertisement
Guest User

Untitled

a guest
May 6th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. procedure Main is
  2. test : TValue :=
  3. (value => 0.7,
  4. timeStamp => Clock,
  5. status => (Valid => False, Unknown => True)
  6. );
  7. begin
  8. -- print of Test.value
  9. Put(Item => Test.value ,Fore => 5, Aft => 3, Exp => 0);
  10. -- here I want a print of timestamp
  11.  
  12. end Main;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement