Skip to content

A collection of my hello world programs that I made with the start of certain programming languages.

License

Notifications You must be signed in to change notification settings

seanpm2001/Hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Top

README.md


Index

00.0 - Top

01.0 - Index

02.0 - Description

03.0 - About

04.0 - Wiki

05.0 - Version history

06.0 - Contributers

07.0 - Contributing

08.0 - Hello world programs

08.1 - Python 3

08.2 - Java 1.8

09.0 - About README

10.0 - Footer


Hello-world

A collection of my hello world programs that I made with the start of certain programming languages.


About

See above


Wiki

Click/tap here to view this projects Wiki


Version history

More versions coming soon


Contributers

Currently, I am the only contributer. I will not accept any other contributers, this is a personal project.

    1. seanpm2001 - 14 commits (As of Wednesday, July 15th 2020 at 11:30 am)
    1. No other contributers allowed

Contributing

Here is the contributing file for reference.

Contributing.md


Hello world programs

This section contains subsections about my main hello world programs.

Python 3

I took 2 years of Python courses in High School from 2017 to 2019. I made a hello world program in this class, it was my first, and it was so easy, I didn't even really need instruction.

You can view it here or you can see the source below

1 print ("Hello world")

Java 1.8

I took an AP Java class from 2018 to 2019, and of course, I made a Hello world program in this class as well. This time, I learned about the comma in the name, I originally didn't notice it.

You can view it here or you can see the source below

01

02 public class HelloWorld {

03

04 public static void main(String[] args) {

05 // TODO Auto-generated method stub

06 System.out.println("Hello, World.");

07 }

08

09 }

10


About README

File type: Markdown (*.md)

File version: 1 (Wednesday, July 15th 2020 at 11:30 am)

Line count: 0,136


You have reached the end of the README file

Back to top Exit