mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 12:53:47 +00:00
14 lines
150 B
Mathematica
14 lines
150 B
Mathematica
:- module undead_proc.
|
|
|
|
:- interface.
|
|
|
|
% no exported preds!
|
|
|
|
:- implementation.
|
|
|
|
:- pred p(int::out) is det.
|
|
|
|
:- pragma(export, p(out), "p").
|
|
|
|
p(42).
|