/*
Find a quote from a famous person you admire. Print the quote and the name of its author. Your output should look something like the following, including the quotation marks:
Albert Einstein once said, “A person who never made a mistake never tried anything new.”
*/

const myQuote: string = 'Albert Einstein once said, “A person who never made a mistake never tried anything new.” '

// backtick

console.log(myQuote);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: