diff --git a/README.md b/README.md index 97be136..cfd58d5 100644 --- a/README.md +++ b/README.md @@ -1 +1,5 @@ -# demo \ No newline at end of file +# Demo + +This is a demonstration repository for the Hyperlint product. For more information, you should read [the documentation](https://docs.hyperlint.com/). + +This chnge only exists to be able to show off what a review looks like and what kind of information you should expect back from a review. diff --git a/getting-started-with-python.md b/getting-started-with-python.md new file mode 100644 index 0000000..4efed5e --- /dev/null +++ b/getting-started-with-python.md @@ -0,0 +1,42 @@ +--- +title: Some Front Matter +--- + +# Some Big Title + +## Some Subtitle + +### Step 2: Write Your First Python Program + +Open a new file in your text editor, and write the following code: + +```python +print("Hello, World!") +``` + +Save the file as `hello.py`. Now you can run that file all by yourself because you're a big boy! + +### Step 4: Write a Basic Function + +Let's write a function that adds two numbers. Add the following code to your `hello.py` file: + +```python +def add_numbers(num1, num2): + return num1 + num2 + +print(add_numbers(3, 5)) +``` + +## This is renaming + +This is another section that contains text. This is something else. This is a change that I am proposing. Here's a change again. + +This is an addition, while this is a change. This section needs to be written. + +### Step 5: Run Your Updated Python Program + +Run the `hello.py` file again with the command `python hello.py`. You should see the result of the addition printed to the console. + +## Conclusion + +In conclusion, you've learned more about python and are now ready to do more things with python because you learned. \ No newline at end of file