Skip to content

Instantly share code, notes, and snippets.

-module(my_behaviour)
-export_type([my_data_type/1]).
-type my_data_type(Type) :: {ok, Type} | {error, atom()}.
-callback my_custom_function() -> my_data_type(term()).
@johnfoconnor
johnfoconnor / .conf
Last active August 29, 2015 14:05 — forked from bitwalker/.conf
my_app.complex_list.buzz.type = person
my_app.complex_list.buzz.age = 25
my_app.complex_list.fido.type = dog
my_app.complex_list.fido.opts.special_value = biz
my_app.complex_list = {buzz, person}, {fido, dog}