-- Chapter 12 example: # gives the length of a string. print(#"hello") print(#"") local greeting = "Welcome" print(#greeting) -- Try adding a line below that prints the length of your name.