/*
Store a person’s name in a variable, and print a message to that person. Your message should be simple, such as, “Hello Eric, would you like to learn some Python today?”
*/
let personName: string = "Eric";
console.log("Hello "+ personName + ", would you like to learn some Python today?");
To embed this project on your website, copy the following code and paste it into your website's HTML: