Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

created new hello world in python #390

Merged
merged 3 commits into from
Oct 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 6 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,11 @@
- Bio: IT Student at the University of Granada
- GitHub: [Antonio Jesus Pelaez](https://github.com/ajpelaez)

#### Name: [Kevin Mora](https://github.com/kevinmora94)
- Place: Alajuea, Alajuela, Costa Rica
- Bio: Web dev and graphic designer
- GitHub: [kevinmora94](https://github.com/kevinmora94)

#### Name: [Akash Goel] (https://github.com/akashgoel1197)
- Place: India
- Bio: Gamer
Expand Down Expand Up @@ -16641,4 +16646,4 @@ to explore life. Also, Python and Django Developer
#### Name: [Federico Sebastián Sassone](https://github.com/fedesassone)
- Place: Rafael Calzada, Buenos Aires, Argentina
- Bio: Software Developer, Student at Universidad de Buenos Aires
- GitHub: [fedesassone](https://github.com/fedesassone)
- GitHub: [fedesassone](https://github.com/fedesassone)
10 changes: 10 additions & 0 deletions scripts/hello_world_kevinmora94.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# LANGUAGE: Python
# ENV: python3.5
# AUTHOR: Kevin Mora
# GITHUB: https://github.com/kevinmora94

def salute(greet):
print(greet)

s = "Hello World"
salute(s)