This project is meant to help others run through the basic steps of getting a basic "Hello, world!" program up and running.
Start by opening cmd.exe from inside the hello-world folder.
Install MinGW Installation Manager (mingw-get)
Create a '.c' file to contain your C source code (see included source code for an example)
Compile:
gcc HelloC.c -o HelloC
Creates an '.exe' file
Run:
HelloC
Install .Net Core 2.2
Create:
dotnet new console -o HelloC#
Creates folder w/ files ending in '.cs' & '.csproj' extensions
'.cs' is the C# source code
'.csproj' is the C# project settings/references file
Edit the '.cs' file as you see fit
Run:
cd HelloC#
dotnet run
Install MinGW Installation Manager (mingw-get)
Same download as C (see above)
Create a '.cpp' file to contain your C++ source code (see included source code for an example)
Compile:
g++ HelloC++.cpp -o HelloC++
Creates an '.exe' file
Run:
HelloC++
Create an '.html' file to contain your HTML code (see included source code for an example)
Create a '.css' file to contain your CSS code (see included source code for an example)
Create a '.js' file to contain your JavaScript code (see included source code for an example)
Be sure to add a link to your '.css' and '.js' files in your '.html' file!
Run:
HelloHTML.html
Install Java Development Kit (JDK)
Create a '.java' file to contain your Java source code (see included source code for an example)
Compile:
javac HelloJava.java
Creates a '.class' file
Run:
java HelloJava
Install Windows x86-64 MSI Installer for Python 2
Create a '.py' file to contain your Python 2 code (see included source code for an example)
Run:
python HelloPython2.py
Install Windows x86-64 executable installer for Python 3
Create a '.py' file to contain your Python 3 code (see included source code for an example)
Run:
py HelloPython3.py