From 4cba025cb6cd0a6c65a7180bc2baad3e3e0479aa Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Fri, 19 May 2017 05:36:54 -0400 Subject: [PATCH 01/27] Delete testing --- testing | 1 - 1 file changed, 1 deletion(-) delete mode 100644 testing diff --git a/testing b/testing deleted file mode 100644 index 332893b..0000000 --- a/testing +++ /dev/null @@ -1 +0,0 @@ -Nothing. Testing if i can accept pull request on behalf of EVRL From ed60e493c5d9fff2ac77c6774b9b3d33b0fd10ea Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Fri, 19 May 2017 05:37:05 -0400 Subject: [PATCH 02/27] Delete testing-knwachuk --- testing-knwachuk | 1 - 1 file changed, 1 deletion(-) delete mode 100644 testing-knwachuk diff --git a/testing-knwachuk b/testing-knwachuk deleted file mode 100644 index 1a8214d..0000000 --- a/testing-knwachuk +++ /dev/null @@ -1 +0,0 @@ -This is the proper test From fc604c3c30af8d7b3da15c5c3de4fc2403c4103f Mon Sep 17 00:00:00 2001 From: adlacilla Date: Tue, 30 May 2017 21:11:23 -0400 Subject: [PATCH 03/27] Create hello-world-adlacilla.c --- hello-world-adlacilla.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello-world-adlacilla.c diff --git a/hello-world-adlacilla.c b/hello-world-adlacilla.c new file mode 100644 index 0000000..53b2f7a --- /dev/null +++ b/hello-world-adlacilla.c @@ -0,0 +1,8 @@ +#include + +int main() +{ +printf("Hello World"); + +return 0; +} From bb62e3184d677cca546ce985a881477f63cbff87 Mon Sep 17 00:00:00 2001 From: alahl1 Date: Wed, 31 May 2017 10:20:37 -0400 Subject: [PATCH 04/27] Create hello-world-alahl1 --- hello-world-alahl1 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello-world-alahl1 diff --git a/hello-world-alahl1 b/hello-world-alahl1 new file mode 100644 index 0000000..eb174ff --- /dev/null +++ b/hello-world-alahl1 @@ -0,0 +1,6 @@ +public class HelloWorld { + public static void main(String[] args) { + // Prints "Hello, World" in the terminal window. + System.out.println("Hello, World"); + } +} From c69611390ec427f55b28a04166bee0549dc1a9a7 Mon Sep 17 00:00:00 2001 From: Adeyemi Ibijemilusi Date: Wed, 31 May 2017 11:03:41 -0400 Subject: [PATCH 05/27] Create HelloWorldAdibi1.java First Java Version of HelloWorld in this Rep. --- HelloWorldAdibi1.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 HelloWorldAdibi1.java diff --git a/HelloWorldAdibi1.java b/HelloWorldAdibi1.java new file mode 100644 index 0000000..738fde5 --- /dev/null +++ b/HelloWorldAdibi1.java @@ -0,0 +1,8 @@ + +public class HelloWorldAdibi1 +{ + public static void main(String[] args) + { + System.out.println("Hello World"); + } +} From 099439d7f689fb065e22f0a6654ca685df38a93d Mon Sep 17 00:00:00 2001 From: alahl1 Date: Wed, 31 May 2017 13:07:04 -0400 Subject: [PATCH 06/27] Update hello-world-alahl1 --- hello-world-alahl1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hello-world-alahl1 b/hello-world-alahl1 index eb174ff..20dc6fd 100644 --- a/hello-world-alahl1 +++ b/hello-world-alahl1 @@ -1,6 +1,5 @@ -public class HelloWorld { +public class Main{ public static void main(String[] args) { - // Prints "Hello, World" in the terminal window. System.out.println("Hello, World"); } } From 7b3fa7c66ed524cc370af8b2e07f0545fb5ca2c5 Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Thu, 1 Jun 2017 00:07:30 -0400 Subject: [PATCH 07/27] Create CONTRIBUTING.md --- CONTRIBUTING.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..1f16f61 --- /dev/null +++ b/CONTRIBUTING.md @@ -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. + +**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"); + } +} +``` From 595619cb489c4b748b72b0345591a8bd0f0559dd Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Thu, 1 Jun 2017 00:20:04 -0400 Subject: [PATCH 08/27] Update CONTRIBUTING.md remove fullstop line 11 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1f16f61..bbd3866 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ The following is a set of guidelines for contributing to MSU EVRL hello-world. T 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`. +>`hello-world-knwachuk.py` #### Python Language ```Python From 0bbd9df4fff06bed098fed3c7d84c8a2eb057dfe Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Thu, 1 Jun 2017 04:29:31 -0400 Subject: [PATCH 09/27] Update README.md to add filename information --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 725ff38..4f46505 100644 --- a/README.md +++ b/README.md @@ -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 hyphen should retain the convention of the language. For example in Java, +> `HelloWorldMsuid.extension` From 9c0e52b8ccd79e3f5c114a04d2acddee9f9aeb89 Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Thu, 1 Jun 2017 04:30:20 -0400 Subject: [PATCH 10/27] Fix typo in README.md update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f46505..57f4249 100644 --- a/README.md +++ b/README.md @@ -18,5 +18,5 @@ You are allowed to modify this `README.md` file to provide more information on t 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 hyphen should retain the convention of the language. For example in Java, +For languages that do not allow filenames that include a hyphen should retain the convention of the language. For example in Java, > `HelloWorldMsuid.extension` From 80e62123cd3385617b44389a9ade7547b8de1c18 Mon Sep 17 00:00:00 2001 From: alahl1 Date: Thu, 1 Jun 2017 10:40:11 -0400 Subject: [PATCH 11/27] Update MSU EVRL 6-1-17 (#1) * Delete testing * Delete testing-knwachuk * Create hello-world-adlacilla.c * Create HelloWorldAdibi1.java First Java Version of HelloWorld in this Rep. * Create CONTRIBUTING.md * Update CONTRIBUTING.md remove fullstop line 11 * Update README.md to add filename information * Fix typo in README.md update --- CONTRIBUTING.md | 32 ++++++++++++++++++++++++++++++++ HelloWorldAdibi1.java | 8 ++++++++ README.md | 13 ++++++++++--- hello-world-adlacilla.c | 8 ++++++++ testing | 1 - testing-knwachuk | 1 - 6 files changed, 58 insertions(+), 5 deletions(-) create mode 100644 CONTRIBUTING.md create mode 100644 HelloWorldAdibi1.java create mode 100644 hello-world-adlacilla.c delete mode 100644 testing delete mode 100644 testing-knwachuk diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..bbd3866 --- /dev/null +++ b/CONTRIBUTING.md @@ -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. + +**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"); + } +} +``` diff --git a/HelloWorldAdibi1.java b/HelloWorldAdibi1.java new file mode 100644 index 0000000..738fde5 --- /dev/null +++ b/HelloWorldAdibi1.java @@ -0,0 +1,8 @@ + +public class HelloWorldAdibi1 +{ + public static void main(String[] args) + { + System.out.println("Hello World"); + } +} diff --git a/README.md b/README.md index 725ff38..57f4249 100644 --- a/README.md +++ b/README.md @@ -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 hyphen should retain the convention of the language. For example in Java, +> `HelloWorldMsuid.extension` diff --git a/hello-world-adlacilla.c b/hello-world-adlacilla.c new file mode 100644 index 0000000..53b2f7a --- /dev/null +++ b/hello-world-adlacilla.c @@ -0,0 +1,8 @@ +#include + +int main() +{ +printf("Hello World"); + +return 0; +} diff --git a/testing b/testing deleted file mode 100644 index 332893b..0000000 --- a/testing +++ /dev/null @@ -1 +0,0 @@ -Nothing. Testing if i can accept pull request on behalf of EVRL diff --git a/testing-knwachuk b/testing-knwachuk deleted file mode 100644 index 1a8214d..0000000 --- a/testing-knwachuk +++ /dev/null @@ -1 +0,0 @@ -This is the proper test From 11817b2ac96ea0f88a281cff33d99e3bc1af2ceb Mon Sep 17 00:00:00 2001 From: alahl1 Date: Thu, 1 Jun 2017 10:48:00 -0400 Subject: [PATCH 12/27] Update and rename hello-world-alahl1 to HelloWorldAlahl1.java --- hello-world-alahl1 => HelloWorldAlahl1.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename hello-world-alahl1 => HelloWorldAlahl1.java (74%) diff --git a/hello-world-alahl1 b/HelloWorldAlahl1.java similarity index 74% rename from hello-world-alahl1 rename to HelloWorldAlahl1.java index 20dc6fd..f36f13b 100644 --- a/hello-world-alahl1 +++ b/HelloWorldAlahl1.java @@ -1,4 +1,5 @@ -public class Main{ +public class HelloWorldAlahl1 +{ public static void main(String[] args) { System.out.println("Hello, World"); } From 895014732f3759e1639446a21cbe4c9f2052b097 Mon Sep 17 00:00:00 2001 From: kydra1 Date: Thu, 1 Jun 2017 11:31:21 -0400 Subject: [PATCH 13/27] Add files via upload --- hello-world-kydra1.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello-world-kydra1.py diff --git a/hello-world-kydra1.py b/hello-world-kydra1.py new file mode 100644 index 0000000..8e23576 --- /dev/null +++ b/hello-world-kydra1.py @@ -0,0 +1 @@ +print("Hello World") \ No newline at end of file From 3898ccb8e410bdbe709cbc380880b08e0d22a96f Mon Sep 17 00:00:00 2001 From: rvirgil Date: Thu, 1 Jun 2017 23:59:07 -0400 Subject: [PATCH 14/27] Create helloworld.c --- helloworld.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..957b344 --- /dev/null +++ b/helloworld.c @@ -0,0 +1,8 @@ +#include +int main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + system("Pause"); + return 0; +} From 7c1d3ecbf2a5badb5dc93d0f84bdd0ff3cee503b Mon Sep 17 00:00:00 2001 From: rvirgil Date: Fri, 2 Jun 2017 00:02:19 -0400 Subject: [PATCH 15/27] Create helloworld-rovir2.c --- helloworld-rovir2.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 helloworld-rovir2.c diff --git a/helloworld-rovir2.c b/helloworld-rovir2.c new file mode 100644 index 0000000..957b344 --- /dev/null +++ b/helloworld-rovir2.c @@ -0,0 +1,8 @@ +#include +int main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + system("Pause"); + return 0; +} From c2da3f4b3f0d6e89ec7cc2c04aa9a96a39c311d6 Mon Sep 17 00:00:00 2001 From: rvirgil Date: Fri, 2 Jun 2017 00:02:59 -0400 Subject: [PATCH 16/27] Delete helloworld.c --- helloworld.c | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c deleted file mode 100644 index 957b344..0000000 --- a/helloworld.c +++ /dev/null @@ -1,8 +0,0 @@ -#include -int main() -{ - // printf() displays the string inside quotation - printf("Hello, World!"); - system("Pause"); - return 0; -} From c56cbcdbaf4f1df9431604f3932fcbe8afb98970 Mon Sep 17 00:00:00 2001 From: rvirgil Date: Thu, 22 Jun 2017 15:16:48 -0400 Subject: [PATCH 17/27] Rename helloworld-rovir2.c to hello-world-rovir2.c --- helloworld-rovir2.c => hello-world-rovir2.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename helloworld-rovir2.c => hello-world-rovir2.c (100%) diff --git a/helloworld-rovir2.c b/hello-world-rovir2.c similarity index 100% rename from helloworld-rovir2.c rename to hello-world-rovir2.c From f7c2ae59595c7809a0d3e46bdeb09e55e390075b Mon Sep 17 00:00:00 2001 From: MSU EVRL Date: Fri, 4 Aug 2017 13:23:02 -0400 Subject: [PATCH 18/27] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bbd3866..8a86819 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ The following is a set of guidelines for contributing to MSU EVRL hello-world. T 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` +>`hello_world_knwachuk.py` #### Python Language ```Python From 44f3549598f709898d20c70d5ad1d4ca898763c6 Mon Sep 17 00:00:00 2001 From: MSU EVRL Date: Fri, 4 Aug 2017 13:23:40 -0400 Subject: [PATCH 19/27] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8a86819..7eead14 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ The following is a set of guidelines for contributing to MSU EVRL hello-world. T ## 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: +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` From 94ed88b0f5fb2d3896ad6af0fc1de72c5946c049 Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Mon, 7 Aug 2017 03:48:36 -0400 Subject: [PATCH 20/27] Update README.md to replace hyphen with underscore --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 57f4249..ed087dc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Some guided instructions for a simpler introduction to git are [Codecademy's lea ## Instructions 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`. +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 @@ -16,7 +16,7 @@ You are allowed to modify this `README.md` file to provide more information on t #### Program Filename The name of the program file should be of the form: -> `hello-world-msuid.extension` +> `hello_world_msuid.extension` For languages that do not allow filenames that include a hyphen should retain the convention of the language. For example in Java, > `HelloWorldMsuid.extension` From fc0bd3119707680e066dddb99613f154d027f2c1 Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Mon, 7 Aug 2017 04:23:55 -0400 Subject: [PATCH 21/27] Update upstream with underscore (#14) * Updating remote copy with upstream 2017-08-07 03:59:00 (#5) * Create hello-world-alahl1 * Update hello-world-alahl1 * Update MSU EVRL 6-1-17 (#1) * Delete testing * Delete testing-knwachuk * Create hello-world-adlacilla.c * Create HelloWorldAdibi1.java First Java Version of HelloWorld in this Rep. * Create CONTRIBUTING.md * Update CONTRIBUTING.md remove fullstop line 11 * Update README.md to add filename information * Fix typo in README.md update * Update and rename hello-world-alahl1 to HelloWorldAlahl1.java * Add files via upload * Create helloworld.c * Create helloworld-rovir2.c * Delete helloworld.c * Rename helloworld-rovir2.c to hello-world-rovir2.c * Update CONTRIBUTING.md * Update CONTRIBUTING.md * Update README.md to replace hyphen with underscore * Add more information about hyphens and underscore. * Remove extra hypen in parenthesis * Update README.md * Rename hello-world-adlacilla.c to hello_world_adlacilla.c * Rename hello-world-rovir2.c to hello_world_rovir2.c * Rename hello-world-rawil28.cpp to hello_world_rawil28.cpp * Rename hello-world-kydra1.py to hello_world_kydra1.py * Rename hello-world-kenwa1.py to hello_world_kenwa1.py * Rename hello-world-feoke1.py to hello_world_feoke1.py --- CONTRIBUTING.md | 2 +- README.md | 2 +- hello-world-adlacilla.c => hello_world_adlacilla.c | 0 hello-world-feoke1.py => hello_world_feoke1.py | 0 hello-world-kenwa1.py => hello_world_kenwa1.py | 0 hello_world_kydra1.py | 1 + hello-world-rawil28.cpp => hello_world_rawil28.cpp | 2 +- hello_world_rovir2.c | 8 ++++++++ 8 files changed, 12 insertions(+), 3 deletions(-) rename hello-world-adlacilla.c => hello_world_adlacilla.c (100%) rename hello-world-feoke1.py => hello_world_feoke1.py (100%) rename hello-world-kenwa1.py => hello_world_kenwa1.py (100%) create mode 100644 hello_world_kydra1.py rename hello-world-rawil28.cpp => hello_world_rawil28.cpp (91%) create mode 100644 hello_world_rovir2.c diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7eead14..802c213 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ The file name should be of the form hello_world_username.extension. So for examp ```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. +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. diff --git a/README.md b/README.md index ed087dc..f0316a5 100644 --- a/README.md +++ b/README.md @@ -18,5 +18,5 @@ You are allowed to modify this `README.md` file to provide more information on t 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 hyphen should retain the convention of the language. For example in Java, +For languages that do not allow filenames that include a underscores should retain the convention of the language. For example in Java, > `HelloWorldMsuid.extension` diff --git a/hello-world-adlacilla.c b/hello_world_adlacilla.c similarity index 100% rename from hello-world-adlacilla.c rename to hello_world_adlacilla.c diff --git a/hello-world-feoke1.py b/hello_world_feoke1.py similarity index 100% rename from hello-world-feoke1.py rename to hello_world_feoke1.py diff --git a/hello-world-kenwa1.py b/hello_world_kenwa1.py similarity index 100% rename from hello-world-kenwa1.py rename to hello_world_kenwa1.py diff --git a/hello_world_kydra1.py b/hello_world_kydra1.py new file mode 100644 index 0000000..ad35e5a --- /dev/null +++ b/hello_world_kydra1.py @@ -0,0 +1 @@ +print("Hello World") diff --git a/hello-world-rawil28.cpp b/hello_world_rawil28.cpp similarity index 91% rename from hello-world-rawil28.cpp rename to hello_world_rawil28.cpp index 8948d55..195a3e5 100644 --- a/hello-world-rawil28.cpp +++ b/hello_world_rawil28.cpp @@ -6,4 +6,4 @@ int main() { cout << "Hello World" << endl; system("pause"); return(0); -}; \ No newline at end of file +}; diff --git a/hello_world_rovir2.c b/hello_world_rovir2.c new file mode 100644 index 0000000..957b344 --- /dev/null +++ b/hello_world_rovir2.c @@ -0,0 +1,8 @@ +#include +int main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + system("Pause"); + return 0; +} From e2e4386e2e60f70f974aea2d2aa72c0ae78b37bb Mon Sep 17 00:00:00 2001 From: chnos1 <32497224+chnos1@users.noreply.github.com> Date: Mon, 23 Oct 2017 10:33:15 -0700 Subject: [PATCH 22/27] Create hello_world_chnos1.py --- hello_world_chnos1.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello_world_chnos1.py diff --git a/hello_world_chnos1.py b/hello_world_chnos1.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/hello_world_chnos1.py @@ -0,0 +1 @@ + From 21a2b71953b87898df81ad4377021a66efe862b8 Mon Sep 17 00:00:00 2001 From: chnos1 <32497224+chnos1@users.noreply.github.com> Date: Mon, 23 Oct 2017 10:54:44 -0700 Subject: [PATCH 23/27] Create hello_world_chnos1.py (#16) --- hello_world_chnos1.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello_world_chnos1.py diff --git a/hello_world_chnos1.py b/hello_world_chnos1.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/hello_world_chnos1.py @@ -0,0 +1 @@ + From 38bfdb138b8d81a5f69d86ffcb3bd003822f423f Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Mon, 23 Oct 2017 13:59:56 -0400 Subject: [PATCH 24/27] Revert "Create hello_world_chnos1.py (#16)" (#17) This reverts commit 21a2b71953b87898df81ad4377021a66efe862b8. --- hello_world_chnos1.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 hello_world_chnos1.py diff --git a/hello_world_chnos1.py b/hello_world_chnos1.py deleted file mode 100644 index 8b13789..0000000 --- a/hello_world_chnos1.py +++ /dev/null @@ -1 +0,0 @@ - From 0a5227507f3138d61351c0958be583a8e5b46c2e Mon Sep 17 00:00:00 2001 From: chnos1 <32497224+chnos1@users.noreply.github.com> Date: Mon, 23 Oct 2017 11:18:49 -0700 Subject: [PATCH 25/27] Update hello_world_chnos1.py --- hello_world_chnos1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello_world_chnos1.py b/hello_world_chnos1.py index 8b13789..3181ec8 100644 --- a/hello_world_chnos1.py +++ b/hello_world_chnos1.py @@ -1 +1 @@ - +print(''hello world") From c2de63602d3274489f6d011bf9e11ff77a02c7e7 Mon Sep 17 00:00:00 2001 From: TheLegacyE Date: Tue, 5 Feb 2019 15:30:51 -0500 Subject: [PATCH 26/27] Merge Mfon hello world (#22) * Create hello_world_kenwa2.py for example * Add if __name__ to module * Revert "Add if __name__ to module" This reverts commit b34f6978fbbe3e61e276b2ebc342c15ad85dc244. * Add if __name__ to module v2 --- hello_world_kenwa2.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello_world_kenwa2.py diff --git a/hello_world_kenwa2.py b/hello_world_kenwa2.py new file mode 100644 index 0000000..8034d55 --- /dev/null +++ b/hello_world_kenwa2.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python + +def main(): + print("Hello World) + +if __name__ == '__main__': + main() \ No newline at end of file From a98953c83ec3d527137cca26b8c74738d572773a Mon Sep 17 00:00:00 2001 From: BIGDADDYDAVID47 <51392899+BIGDADDYDAVID47@users.noreply.github.com> Date: Wed, 5 Jun 2019 15:43:37 -0400 Subject: [PATCH 27/27] Create hello_world_dafun2 (#25) --- hello_world_dafun2.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello_world_dafun2.py diff --git a/hello_world_dafun2.py b/hello_world_dafun2.py new file mode 100644 index 0000000..8e23576 --- /dev/null +++ b/hello_world_dafun2.py @@ -0,0 +1 @@ +print("Hello World") \ No newline at end of file