1defmodule CallbackModule do 2 use Behaviour 3 # This is the new callback syntax 4 @callback new_callback() :: integer 5 6 # This is the old (deprecated) callback syntax 7 defcallback old_callback(info :: integer) :: integer 8end 9