Ada Flashcards
1
Q
ADA - How to create a Record of type Date
A
- someday1 := ( 1, JAN, 1901 ); −− order fixed by the Date type
- someday2 := ( m => JAN, d => 1, y => 1901 ); −− any order is OK
optionally using the names of
the components, which allows one to write the components in any order