Skip to content

Instantly share code, notes, and snippets.

@dimitris-papadimitriou-chr
Last active July 2, 2020 17:46
Show Gist options
  • Select an option

  • Save dimitris-papadimitriou-chr/20c5a3f0c4be10d582f8dba9baf83c38 to your computer and use it in GitHub Desktop.

Select an option

Save dimitris-papadimitriou-chr/20c5a3f0c4be10d582f8dba9baf83c38 to your computer and use it in GitHub Desktop.
var parse: (c: string) => Balance = (c: string) => {
switch (c) {
case "(": return Balance.Left
case ")": return Balance.Right
default: return Balance.Empty
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment