Files
mercury/tests/debugger/cmd_quote.m
Mark Brown 10e82ea61d Allow mdb commands to quote words so that they can contain whitespace,
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.
2002-02-25 03:52:52 +00:00

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").