mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
tests/declarative_debugger/*.m:
tests/exceptions/*.m:
tests/general/*.m:
tests/grade_subdirs/*.m:
tests/purity/*.m:
tests/submodules/*.m:
tests/typeclasses/*.m:
Update programming style.
tests/declarative_debugger/*.inp:
Update line numbers in breakpoint commands.
tests/declarative_debugger/*.exp:
Update expected line numbers.
tests/exceptions/Mercury.options:
tests/general/Mercury.options:
Disable some warnings that are irrelevant to the test.
57 lines
1.9 KiB
Mathematica
57 lines
1.9 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
% string_foldr_substring.m
|
|
% Ralph Becket <rafe@cs.mu.oz.au>
|
|
% Mon Oct 28 16:32:19 EST 2002
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module string_foldr_substring.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module char.
|
|
:- import_module int.
|
|
:- import_module list.
|
|
:- import_module string.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
main(!IO) :-
|
|
io.write_strings([
|
|
"sub(\"Hello, World!\", 0, 5) = \"",
|
|
sub("Hello, World!", 0, 5),
|
|
"\"\nsub(\"Hello, World!\", 0, 50) = \"",
|
|
sub("Hello, World!", 0, 50),
|
|
"\"\nsub(\"Hello, World!\", 0, -5) = \"",
|
|
sub("Hello, World!", 0, -5),
|
|
"\"\nsub(\"Hello, World!\", -5, 12) = \"",
|
|
sub("Hello, World!", -5, 12),
|
|
"\"\nsub(\"Hello, World!\", -5, 50) = \"",
|
|
sub("Hello, World!", -5, 50),
|
|
"\"\nsub(\"Hello, World!\", 7, 0) = \"",
|
|
sub("Hello, World!", 7, 0),
|
|
"\"\nsub(\"Hello, World!\", 7, 12) = \"",
|
|
sub("Hello, World!", 7, 12),
|
|
"\"\nsub(\"Hello, World!\", 50, 10) = \"",
|
|
sub("Hello, World!", 50, 10),
|
|
"\"\n"
|
|
], !IO).
|
|
|
|
:- func sub(string, int, int) = string.
|
|
|
|
sub(S, I, N) =
|
|
from_char_list(foldr_between(func(X, Xs) = [X | Xs], S, I, N, [])).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
%---------------------------------------------------------------------------%
|