Migrate from Markdown to Djot

This commit is contained in:
Adrián Arroyo Calle
2023-01-19 21:15:25 +01:00
parent 84583da5b8
commit 46d1e3bee3
11 changed files with 334 additions and 243 deletions

View File

@@ -30,9 +30,9 @@ random(R) :-
%
% Generates a random integer number between Lower (inclusive) and Upper (exclusive).
%
% Throws instantiation\_error if Lower or Upper are variables.
% Throws `instantiation_error` if Lower or Upper are variables.
%
% Throws type\_error if Lower or Upper aren't integers.
% Throws `type_error` if Lower or Upper aren't integers.
random_integer(Lower, Upper, R) :-
var(R),
( (var(Lower) ; var(Upper)) ->