Skip to content
Open
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
Empty file added .github/workflows/run_test.yml
Empty file.
Binary file added labs/.DS_Store
Binary file not shown.
8 changes: 7 additions & 1 deletion labs/lab_1/lab_1a.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@

"""
lab_1a.py

The first lab in the BWSI CSS course. To complete this lab, fill out the variable on line 10
with your name. Then, save the code, add it to the staging area, and commit it to the Git tree.
<<<<<<< HEAD
This is to simulate a change made on a robot: robot_speed = 8 # m/s
=======
This is to simulate a change made on a robot: robot_speed = 3 # m/s
>>>>>>> f0ea6b2bbbeed28a29c681342b8ff6add88af4b4
"""

def main():
print("Hello World!")

name = "" # TODO: Insert your name between the double quotes
name = "Steven Liang" # TODO: Insert your name between the double quotes

print(f"{name}, Welcome to the CSS course!")

Expand Down