Last active
April 5, 2021 06:04
-
-
Save bricker/2082eab5104d8782f78658d8b9eab045 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum JSONValue { | |
case object([String: JSONValue]) | |
case array([JSONValue]) | |
case string(String) | |
case number(Double) | |
case boolean(Bool) | |
case null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment