1
1
Fork 0
exercism/prolog/hello-world/hello_world_tests.plt
Christina Sørensen 2b2c2ba396
feat: prolog hello world
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-12-22 15:27:56 +01:00

17 lines
467 B
Prolog

% Please visit https://exercism.org/docs/tracks/prolog/installation
% for instructions on setting up prolog.
% Visit https://exercism.org/docs/tracks/prolog/tests
% for help running the tests for prolog exercises.
pending :-
current_prolog_flag(argv, ['--all'|_]).
pending :-
write('\nA TEST IS PENDING!\n'),
fail.
:- begin_tests(hello_world).
test(hello_world, condition(true)) :-
hello_world('Hello, World!').
:- end_tests(hello_world).