diff --git a/README.md b/README.md new file mode 100644 index 0000000..5e02bfa --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Intermediate Python Course + +Hey there, + +In this course you will create a dice-rolling program using python. The code you create will be stored in the dice-roller.py file. This repo also contains course materials in the [Issues]({{ repoUrl }}/issues/1). \ No newline at end of file diff --git a/dice-roller.py b/dice-roller.py new file mode 100644 index 0000000..49f974e --- /dev/null +++ b/dice-roller.py @@ -0,0 +1,5 @@ +def main(): + #print('You rolled a die') + +if __name__== "__main__": + main() \ No newline at end of file