packages feed

ychr-0.1.0.0: test/golden/extend_function_multi_extender/c_atoms.chr

:- module(atoms, [type(colors/0)]).
:- use_module(owner, [classify/1]).
:- chr_type colors ---> red.

% Second extender adds an atom overload (distinct from the string one).
:- extend_class_type (classify(atom) -> atom).
:- extend_class classify(red) -> quote(color).