Intro blog post

Just playing around with markdown and quarto
Author

Wright Frost

Published

February 16, 2023

# I'm going to add some Python code
def addTwoNumbers(num_a, num_b):
    sum = num_a + num_b
    return sum
addTwoNumbers(3,5)

And now I’ll try adding it in markdown:

def addTwoNumbers(num_a, num_b):
    sum = num_a + num_b
    return sum
addTwoNumbers(3,5)

Let’s see if this post works…