mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-26 14:54:17 +00:00
Estimated hours taken: 2.5 Branches: main Allow mdb commands to quote words so that they can contain whitespace, and allow characters with special meaning to mdb to be escaped. trace/mercury_trace_internal.c: Implement the new feature. doc/user_guide.texi: Document the new feature. tests/debugger/Mmakefile: tests/debugger/cmd_quote.exp: tests/debugger/cmd_quote.inp: tests/debugger/cmd_quote.m: Test case.
10 lines
174 B
Mathematica
10 lines
174 B
Mathematica
:- module cmd_quote.
|
|
:- interface.
|
|
:- import_module io.
|
|
:- pred main(io__state::di, io__state::uo) is det.
|
|
:- implementation.
|
|
|
|
main -->
|
|
io__write_string("Hello world!\n").
|
|
|