mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 19:03:45 +00:00
18 lines
380 B
Mathematica
18 lines
380 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% See foreign_proc_make.m
|
|
%
|
|
|
|
:- module foreign_proc_make2.
|
|
|
|
:- interface.
|
|
|
|
:- func f3 = int.
|
|
|
|
:- implementation.
|
|
|
|
:- pragma foreign_proc("C#", f3 = (X::out), [promise_pure], "X=5;").
|
|
f3 = 5.
|