From 168b6d83ec69f3c03d574c8c616086fb509f1814 Mon Sep 17 00:00:00 2001 From: Chase Fleming Date: Thu, 21 Apr 2022 17:26:21 -0700 Subject: [PATCH] Update readme --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e2d3228..9820d9d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ console.log(Winter) // 'winter' console.log(Spring) // 'spring' ``` -### Numeric +### Numerics ``` import Enum from 'enum-xyz' @@ -51,7 +51,7 @@ console.log(C) // 2 console.log(D) // 3 ``` -### Numeric Starting at Index +### Numerics Starting at Index ``` import Enum from 'enum-xyz' @@ -62,4 +62,15 @@ console.log(A) // 1 console.log(B) // 2 console.log(C) // 3 console.log(D) // 4 +``` + +### Symbols + +``` +import Enum from 'enum-xyz' + +const { blue, red } = Enum.Symbol + +console.log(blue) // Symbol(blue) +console.log(red) // Symbol(red) ``` \ No newline at end of file