diff --git a/docs/en_readme.md b/docs/en_readme.md index 0501467..c7ac380 100644 --- a/docs/en_readme.md +++ b/docs/en_readme.md @@ -25,11 +25,21 @@ $ go build ## Comments +### Single line comment: Like most of languages, you can use // to define your comments, they won't get interpreted: ```rust // This is my first program in Kahroba programming language, Let's Rock! ``` +### Multiline comment: +You can also have multiline comments in your code, codes within multiline comment block won't get interpreted: +```rust +/* + This is my first program in Kahroba programming language, + Let's Rock! +*/ +``` + ## Strings You can define string using double quotation: ```rust