Skip to content

Commit

Permalink
Update 1_01_a_tour_of_ocaml.md (#2729)
Browse files Browse the repository at this point in the history
fix lost ;; for newbie not be lost on the first command in repl ..
  • Loading branch information
221V authored Sep 29, 2024
1 parent d8a7a53 commit 4d3bc1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/tutorials/getting-started/1_01_a_tour_of_ocaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 4d3bc1e

Please sign in to comment.