Skip to content

Instantly share code, notes, and snippets.

@shiro01
Created August 24, 2018 10:04
Show Gist options
  • Save shiro01/167ef32bd65b611f8f3a378c6645ccac to your computer and use it in GitHub Desktop.
Save shiro01/167ef32bd65b611f8f3a378c6645ccac to your computer and use it in GitHub Desktop.
Elixir 勉強メモ
iex(24)> 1 or true
** (BadBooleanError) expected a boolean on left-side of "or", got: 1
iex(19)> 1 and true
** (BadBooleanError) expected a boolean on left-side of "and", got: 1
iex(19)> true and 1
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment