13 call d%set(
'one',
'one')
14 call d%set(
'pi',
'3.14159')
16 write(*,*)
'one',
' = ', d%get(
'one')
17 write(*,*)
'pi',
' = ', d%get(
'pi')
program example_from_readme
Define a dictionary_t object, use the set and get methods.
The dictionary contains dict_size buckets (defined at run time)
Dictionary type that uses strings for the keys and values.