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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# demo
# 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.
42 changes: 42 additions & 0 deletions getting-started-with-python.md
Original file line number Diff line number Diff line change
@@ -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.