From e9647bbe92c6e50c8f0f8fe1510640c323b48961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Ferreira=20de=20Souza?= Date: Mon, 4 Nov 2024 06:53:12 -0300 Subject: [PATCH] feat(java): add official articles on basic syntax and update the content (#7665) --- .../java/content/100-java-fundamentals/100-basic-syntax.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/java/content/100-java-fundamentals/100-basic-syntax.md b/src/data/roadmaps/java/content/100-java-fundamentals/100-basic-syntax.md index a85ba7e9a..9f5e9a005 100644 --- a/src/data/roadmaps/java/content/100-java-fundamentals/100-basic-syntax.md +++ b/src/data/roadmaps/java/content/100-java-fundamentals/100-basic-syntax.md @@ -1,11 +1,12 @@ # Basic Syntax -Understanding the basics is the key to a solid foundation. In this section, learn the basic terminologies, naming conventions, reserved words, conditions, functions, data structures, OOP, packages, etc. +Understanding the basics is the key to a solid foundation. In this section, learn the basic terminologies, naming conventions, reserved keywords, expressions, statements, data structures, OOP, packages, etc. - To print output use --> System.out.println(); - To take input from user --> Scanner or BufferedReader class can be used Visit the following resources to learn more: +- [@official@Java Language Basics](https://dev.java/learn/language-basics) - [@video@Java - Basic Syntax](https://www.youtube.com/watch?v=81piDKqPxjQ) - [@video@Java Tutorial for Beginners](https://www.youtube.com/watch?v=RRubcjpTkks)