Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am mmainz on github.
  • I am mmainz (https://keybase.io/mmainz) on keybase.
  • I have a public key whose fingerprint is B785 ADB7 D664 E613 7485 D4BA 4D6C 9FC9 9236 DC88

To claim this, I am signing this object:

@mmainz
mmainz / demo.exs
Created September 23, 2016 13:37
The code of the short Elixir demo presented at the first Elixir Meetup in Düsseldorf
#### basic data types
x = 1
y = 2
x + y
string = "I am a string and a binary!"
binary = <<69, 76, 73, 88, 73, 82, 1>>
charlist = 'I am NOT a string'