ychr-0.1.0.0: test/golden/open_class_basic/b_ext.chr
:- module(ext, []).
:- use_module(owner, [classify/1, run/2]).
% Extend the open class with a new signature and a matching equation.
:- extend_class_type (classify(string) -> string).
:- extend_class classify("a") -> "alpha".