From 4d3bc1ef4f74b5568b3017732d54a913e1b361b4 Mon Sep 17 00:00:00 2001 From: Taras <221v92@gmail.com> Date: Sun, 29 Sep 2024 09:13:24 +0300 Subject: [PATCH] Update 1_01_a_tour_of_ocaml.md (#2729) fix lost ;; for newbie not be lost on the first command in repl .. --- data/tutorials/getting-started/1_01_a_tour_of_ocaml.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/tutorials/getting-started/1_01_a_tour_of_ocaml.md b/data/tutorials/getting-started/1_01_a_tour_of_ocaml.md index 9e25f5765e..48c6430349 100644 --- a/data/tutorials/getting-started/1_01_a_tour_of_ocaml.md +++ b/data/tutorials/getting-started/1_01_a_tour_of_ocaml.md @@ -26,7 +26,7 @@ Some of the examples in this tour include comments. Comments in OCaml start with ```ocaml (* Here is a comment *) (* Outside of the nested comment is still a comment. (* Here is a nested comment *) Outside of the nested comment again. *) -# 50 + (* A comment in between parts of an expression *) 50 +# 50 + (* A comment in between parts of an expression *) 50;; - : int = 100 ```