#geekprocoder #java #visualstudiocode
Writing Java with Visual Studio Code This tutorial shows you how to write and run a simple Hello World program in Java with Visual Studio Code. It also covers a few advanced features, which you can explore by reading other documents in this section. With the Java Extension Pack, we also provide an easy way for you to start Java with VS Code by using the command Java: Getting Started from the Command Palette (Ctrl+Shift+B). This command opens a Quick Start guide as well as tips for code editing and debugging. It also has a FAQ to answer some of the most asked questions
how to download/install visual studio code on windows. • vs code 1 | How to download/install visual...
Downloads and install gcc/g++ compiler
• How to download/install C/C++ compiler on ...
---------------------------------------------------------------------------------------
Social media.
Facebook - https://www.facebook.com/934612283565...
Instagram - https://www.instagram.com/p/B9RrSOcnf...
task.json file copy paste this code
------------------------------------------------------------------------------------------
{
// See https://go.microsoft.com/fwlink/?Link...
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "javac",
"args": [
"${fileDirname}/${fileBasename}",
"&&",
"java",
"${fileBasenameNoExtension}",
],
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
}
]
}