From 1936cd5c8581d9c4785bb1b23db0347ace1c4687 Mon Sep 17 00:00:00 2001 From: gendx Date: Fri, 3 Feb 2023 15:28:38 +0000 Subject: [PATCH] Mention that the syntax is similar to Java as well. (#337) --- src/basic-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic-syntax.md b/src/basic-syntax.md index e10850c5..96a36110 100644 --- a/src/basic-syntax.md +++ b/src/basic-syntax.md @@ -1,6 +1,6 @@ # Basic Syntax -Much of the Rust syntax will be familiar to you from C or C++: +Much of the Rust syntax will be familiar to you from C, C++ or Java: * Blocks and scopes are delimited by curly braces. * Line comments are started with `//`, block comments are delimited by `/* ...