Calamity210 / BirbLang

Minimal Bird programming language curated to help new contributers delve into OSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Super Enums

Andy-Python-Programmer opened this issue · comments

Add enums with super powers!

  1. Enums with string values.
enum {
    a = "Hello",
    b = "Allo",
    c = "Bonjour",
} example;
  1. Enums with int values.
enum {
    a = 0,
    b = 500,
    c = 600,
} example;
  1. Enums with constructors.
enum {
    String(String),
    Bool(bool),
} example;