Update HACKING with find_shebang() and ditor_set_indentation_guides()
[geany-mirror.git] / tests / ctags / union.f
blobacc9e9bee3d5bb1194cc748a2a1a2226d237f886
1 program writedate
2 structure /start/
3 union
4 map
5 character*2 month
6 character*2 day
7 character*2 year
8 end map
9 map
10 character*6 date
11 end map
12 end union
13 end structure
14 record /start/ sdate
15 sdate.month = '08'
16 sdate.day = '10'
17 sdate.year = '89'
18 write (*, 10) sdate.date
19 10 format (a)
20 stop
21 end