Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Nim

Visibility

unlisted

Author

legacy-anonymous

Created

2017-04-25T08:44:23Z

Updated

2017-04-25T08:44:23Z

type Dir = enum UP DOWN LEFT RIGHT

const NUMS = [UP: 1, DOWN: 2, LEFT: 3, RIGHT: 4]
echo NUMS[UP]

# Error: type mismatch: got (array[0..3, int], Dir) but ...
INFO