Indentation

This commit is contained in:
Adrien Vannson
2022-05-10 11:23:09 +02:00
parent 73984f4232
commit 29d7e67a00
+2 -7
View File
@@ -135,16 +135,11 @@ while !subgoals <> [] do
done;
let finalLam = !fill_holes [] in
if (typecheck [] finalLam ty)
then
if (typecheck [] finalLam ty) then
Printf.printf "Final proof :\n%s\n" (string_of_lam finalLam)
else
(
else (
Printf.printf "Invalid proof constructed !\n";
Printf.printf "%s can't be typed with %s.\n" (string_of_lam finalLam) (string_of_ty ty);
Printf.printf "The whole development team of pieuvre is sorry for the damage eventually done by this error.\n"
)
;;