Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c1b0596
Merge pull request #3 from msu-evrl/master
knwachuk May 19, 2017
4cba025
Delete testing
knwachuk May 19, 2017
ed60e49
Delete testing-knwachuk
knwachuk May 19, 2017
fc604c3
Create hello-world-adlacilla.c
adlacilla May 31, 2017
78f91cc
Merge pull request #9 from adlacilla/master
knwachuk May 31, 2017
bb62e31
Create hello-world-alahl1
alahl1 May 31, 2017
c696113
Create HelloWorldAdibi1.java
Yeathtsme May 31, 2017
27986a2
Merge pull request #10 from Yeathtsme/master
knwachuk May 31, 2017
099439d
Update hello-world-alahl1
alahl1 May 31, 2017
05af807
Merge pull request #4 from msu-evrl/master
knwachuk Jun 1, 2017
7b3fa7c
Create CONTRIBUTING.md
knwachuk Jun 1, 2017
595619c
Update CONTRIBUTING.md remove fullstop line 11
knwachuk Jun 1, 2017
0bbd9df
Update README.md to add filename information
knwachuk Jun 1, 2017
9c0e52b
Fix typo in README.md update
knwachuk Jun 1, 2017
32e587d
Merge pull request #7 from knwachuk/master
knwachuk Jun 1, 2017
80e6212
Update MSU EVRL 6-1-17 (#1)
alahl1 Jun 1, 2017
11817b2
Update and rename hello-world-alahl1 to HelloWorldAlahl1.java
alahl1 Jun 1, 2017
8950147
Add files via upload
kydra1 Jun 1, 2017
74560d1
Merge pull request #12 from kydra1/master
EVRL Jun 1, 2017
3898ccb
Create helloworld.c
rvirgil Jun 2, 2017
7c1d3ec
Create helloworld-rovir2.c
rvirgil Jun 2, 2017
c2da3f4
Delete helloworld.c
rvirgil Jun 2, 2017
e8f9463
Merge pull request #11 from alahl1/master
knwachuk Jun 2, 2017
c56cbcd
Rename helloworld-rovir2.c to hello-world-rovir2.c
rvirgil Jun 22, 2017
f7c2ae5
Update CONTRIBUTING.md
EVRL Aug 4, 2017
44f3549
Update CONTRIBUTING.md
EVRL Aug 4, 2017
b8c1afb
Merge pull request #13 from rvirgil/master
knwachuk Aug 4, 2017
94ed88b
Update README.md to replace hyphen with underscore
knwachuk Aug 7, 2017
fc0bd31
Update upstream with underscore (#14)
knwachuk Aug 7, 2017
e2e4386
Create hello_world_chnos1.py
chnos1 Oct 23, 2017
0c831a0
Merge pull request #1 from chnos1/chnos1-patch-2
chnos1 Oct 23, 2017
21a2b71
Create hello_world_chnos1.py (#16)
chnos1 Oct 23, 2017
38bfdb1
Revert "Create hello_world_chnos1.py (#16)" (#17)
knwachuk Oct 23, 2017
0a52275
Update hello_world_chnos1.py
chnos1 Oct 23, 2017
593c2c6
Merge pull request #18 from chnos1/master
Feyi1 Oct 24, 2017
c2de636
Merge Mfon hello world (#22)
TheLegacyE Feb 5, 2019
a98953c
Create hello_world_dafun2 (#25)
BIGDADDYDAVID47 Jun 5, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Contributing to hello-world

:+1::tada: First off, thanks for taking the time to contribute! :tada::+1:

The following is a set of guidelines for contributing to MSU EVRL hello-world. These are mostly guidelines, not rules. Use your best judgement, and feel free to propose changes to this document in a pull request.

## File name

The file name should be of the form hello_world_username.extension. So for example if my user name is knwachuk and I am using the Python Programming language, then my file should be named:

>`hello_world_knwachuk.py`

#### Python Language
```Python
print("Hello World)
```
This is because a language like Python does not require the name of the file and the functions to be the same. And it has a quirk whereby the name of the file is the module import statement, and since the `hyphen -` is a keyword in the Python programming language, `underscore _` are the preferred space delimiter in filenames.

**However**, there are some languages (like Java) that requires the name of the class and the file to be the same. If that is the case, then stick with the convention of the language.

>`HelloWorldKnwachuk.java`

#### Java Language
```Java
public class HelloWorldKnwachuk
{
public static void main(String[] args)
{
System.out.println("Hello World");
}
}
```
8 changes: 8 additions & 0 deletions HelloWorldAdibi1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

public class HelloWorldAdibi1
{
public static void main(String[] args)
{
System.out.println("Hello World");
}
}
6 changes: 6 additions & 0 deletions HelloWorldAlahl1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
public class HelloWorldAlahl1
{
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,16 @@ Before anything else, visit [Introduction to Github](https://guides.github.com/a
Some guided instructions for a simpler introduction to git are [Codecademy's learn git series](https://www.codecademy.com/learn/learn-git) and for a more in-depth dive into git, you can use [Udacity's How to Use Git and GitHub course](https://classroom.udacity.com/courses/ud775)

## Instructions
1. Make a fork of this repository
2. Create a simple program (in ANY language of your choice named hell-world-msuid e.g. hello-world-kenwa1.py)
1. Make a fork of the [msu-evrl hello-world](https://github.com/msu-evrl/hello-world) repository.
2. Create a simple `hello world` program (in ANY language of your choice) named `hello_world_msuid.extension` e.g. `hello_world_kenwa1.py`.
3. Send a pull request to the main repository to accept your change.

## Added Information
You are allowed to modify this `README.md` file to provide more information on the project. Although the change must be accepted by the maintainer in order to be updated to the upstream (msu-evrl/hello-world) master.
You are allowed to modify this `README.md` file to provide more information on the project. Although the change must be accepted by the maintainer in order to be updated to the upstream [msu-evrl/hello-world](https://github.com/msu-evrl/hello-world) master.

#### Program Filename
The name of the program file should be of the form:
> `hello_world_msuid.extension`

For languages that do not allow filenames that include a underscores should retain the convention of the language. For example in Java,
> `HelloWorldMsuid.extension`
1 change: 1 addition & 0 deletions hello-world-kydra1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World")
8 changes: 8 additions & 0 deletions hello-world-rovir2.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
// printf() displays the string inside quotation
printf("Hello, World!");
system("Pause");
return 0;
}
8 changes: 8 additions & 0 deletions hello_world_adlacilla.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdio.h>

int main()
{
printf("Hello World");

return 0;
}
1 change: 1 addition & 0 deletions hello_world_chnos1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print(''hello world")
1 change: 1 addition & 0 deletions hello_world_dafun2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World")
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions hello_world_kenwa2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env python

def main():
print("Hello World)

if __name__ == '__main__':
main()
1 change: 1 addition & 0 deletions hello_world_kydra1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World")
2 changes: 1 addition & 1 deletion hello-world-rawil28.cpp → hello_world_rawil28.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ int main() {
cout << "Hello World" << endl;
system("pause");
return(0);
};
};
8 changes: 8 additions & 0 deletions hello_world_rovir2.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
// printf() displays the string inside quotation
printf("Hello, World!");
system("Pause");
return 0;
}
1 change: 0 additions & 1 deletion testing

This file was deleted.

1 change: 0 additions & 1 deletion testing-knwachuk

This file was deleted.