Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 818 Bytes

File metadata and controls

28 lines (20 loc) · 818 Bytes

Create a new branch

        git checkout -b fourth-task

Create a hello_world_yourusername.xx script to the Task4 directory in any language of your choice! Here is an example:

// LANGUAGE: Javascript
// ENV: Node.js
// AUTHOR: Stephanie Nkwatoh
// GITHUB: https://github.com/steph237

console.log('Hello, World!');

Name the file hello_world_yourusername.xx. e.g., hello_world_steph237.js or hello_world_steph237.py.

Don't forget to include the comments as seen above. Feel free to include additional information about the language you choose in your comments too! Like a link to a helpful introduction or tutorial.

    git commit -m "feat: added a helloworld program in ...."

    git push

Open a pull request