ychr-0.1.0.0: test/golden/operator_export_import/a_lib.chr
:- module(opslib, [
fun '<>>'/2,
op(500, yfx, '<>>')
]).
:- use_module(prelude).
:- function ('<>>'(int, int) -> int).
'<>>'(X, Y) -> host:'+'(host:'*'(X, 10), Y).
:- module(opslib, [
fun '<>>'/2,
op(500, yfx, '<>>')
]).
:- use_module(prelude).
:- function ('<>>'(int, int) -> int).
'<>>'(X, Y) -> host:'+'(host:'*'(X, 10), Y).