Browse Source

Fix missing code in README.md.

pull/8/head
Fredrik Ekre 4 years ago
parent
commit
2938bf85c7
  1. 5
      README.md

5
README.md

@ -65,6 +65,8 @@ YellowFruits.Banana = 0
`@enumx` also allows for duplicate values: `@enumx` also allows for duplicate values:
```julia ```julia
julia> @enumx Fruit Apple=1 Banana=1
julia> Fruit.T julia> Fruit.T
Enum type Fruit.T <: Enum{Int32} with 2 instances: Enum type Fruit.T <: Enum{Int32} with 2 instances:
Fruit.Apple = 1 Fruit.Apple = 1
@ -98,7 +100,8 @@ Other than that, functionality should be comparable to `Base.@enum`:
UInt8 UInt8
``` ```
- Specifying values (if not specified, defaults to the value of the previous instance + 1): - Specifying values with literals or expressions (if not specified, defaults to the value
of the previous instance + 1):
```julia ```julia
julia> @enumx Fruit Apple=4 Banana=(1 + 5) Orange julia> @enumx Fruit Apple=4 Banana=(1 + 5) Orange

Loading…
Cancel
Save