mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-23 21:33:49 +00:00
13 lines
191 B
Mathematica
13 lines
191 B
Mathematica
:- module no_fully_strict.
|
|
|
|
:- interface.
|
|
:- import_module io.
|
|
|
|
:- pred main(io__state::di, io__state::uo) is det.
|
|
|
|
:- implementation.
|
|
:- import_module require.
|
|
|
|
main -->
|
|
{ error("oops") }.
|