Enumerations: Difference between revisions

m
Ol associative array syntax fix
m (Ol associative array syntax fix)
Line 1,126:
 
=={{header|Ol}}==
Ol enumerations is an builtin "ff"s, that isas a simple fast dictionaries with number, constant or symbol keys and any typed values.
 
<lang scheme>
(define fruits '{
(apple . 0)
(banana . 1)
(cherry . 2)})
; or
(define fruits {
('apple . 0)
('banana . 1)
('cherry . 2)})
 
; getting enumeration value: