Skip to content

Instantly share code, notes, and snippets.

View neptunius's full-sized avatar
🌈

Alan Davis // Rainbow neptunius

🌈
View GitHub Profile
@neptunius
neptunius / cs-1.1-01-snippets.py
Last active August 28, 2019 21:41 — forked from ibirnam/cs-1.1-01-snippets.py
code snippets used for the first class of CS 1.1
# CS-1.1 Variables, Function, and Program Design
def greet_by_name(name):
greeting = "Hello, " + name + "!"
return greeting
print(greet_by_name("Alan"))
# Hello, Alan!
print(greet_by_name("Jess"))