My First Post!
This is my First Post Link to heading
Yes, I’m that kind of computer nerd who spends the evening of Christmas day putting his website online.
Since this is effectively my “hello world” for this blog, I’ll limit the content to code blocks in the two primary programming languages I’m working with right now.
Python Link to heading
In case you’re not familiar with Python, running the code below will print “Merry Christmas!!” to the terminal.
def main():
print("Merry Christmas!!")
main()

C Link to heading
This one does the same thing in C, but with the added step of compiling first.
#include <stdio.h>
int main() {
printf("Merry Christmas!!");
return 0;
}
Closing Link to heading
I know this is all pretty basic, but I’m just goofing off here at the start. Check back for more thorough articles and lab write-ups.
Merry Christmas!!