From 9054353c127f5de34834d8dfbd9ecd1aa0a5a65b Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Mon, 18 Mar 2024 19:20:16 -0400 Subject: [PATCH] created main function to run program --- src/main.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main.py diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..a77ed98 --- /dev/null +++ b/src/main.py @@ -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() \ No newline at end of file