created main function to run program

This commit is contained in:
John O'Keefe 2024-03-18 19:20:16 -04:00
parent b384d89175
commit 9054353c12

8
src/main.py Normal file
View File

@ -0,0 +1,8 @@
from textnode import TextNode
def main():
text = TextNode("This is a text node", "bold", "https://www.boot.dev")
print(text)
main()