views:

29

answers:

1

Possible duplicate: How to convert a Ada.Real_TIme.Time to a string?

How can I convert a Time type obtained with a Ada.Real_Time.Clock to a String type in Ada ?

A: 

dude use the To_Duration to print it (using a cast Duration'Image)

toto321