mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-28 07:44:43 +00:00
Estimated hours taken: 2 Branches: main Replace "is" with "=". Add field names where relevant. Replace integers with counters where relevant.
16 lines
483 B
Mathematica
16 lines
483 B
Mathematica
:- module lambda_syntax_error.
|
|
:- interface.
|
|
|
|
:- some [T] func baz(int) = T.
|
|
:- some [T] func baz2(int) = T.
|
|
:- some [T] func baz3(int) = T.
|
|
:- some [T] func baz4(int) = T.
|
|
|
|
:- implementation.
|
|
:- import_module int.
|
|
|
|
baz(X) = (pred(Y) :- X > Y). % modes & determinism not specified
|
|
baz2(X) = (pred(Y::in) :- X > Y). % determinism not specified
|
|
baz3(X) = (pred(Y) is semidet :- X > Y). % mode not specified
|
|
baz4(X) = (pred(A) = B :- X = A + B). % mixing `func' and `pred' notation
|