From 780b0e7b64e5157562c3f1257360311fc2db1634 Mon Sep 17 00:00:00 2001 From: switch-to-gitlab <73752374+switch-to-gitlab@users.noreply.github.com> Date: Fri, 26 Jul 2024 18:21:27 -0500 Subject: [PATCH] use hash for comment. using a hash mark for the comment makes it slightly more convenient for the reader by allowing them to copy and paste directly into the terminal. --- book/src/01_calculator/calc_intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/01_calculator/calc_intro.md b/book/src/01_calculator/calc_intro.md index 1992848..2858516 100644 --- a/book/src/01_calculator/calc_intro.md +++ b/book/src/01_calculator/calc_intro.md @@ -7,7 +7,7 @@ If you haven't cloned the [GitHub](https://github.com/ehsanmok/create-your-own-l To start, we have `1 + 1;` in [examples/simple.calc](https://github.com/ehsanmok/create-your-own-lang-with-rust/blob/master/calculator/examples/simple.calc) where you can compile with ```text -cargo build --bin main // create a simple executable for Calc +cargo build --bin main # create a simple executable for Calc ../target/debug/main examples/simple.calc ```