/*
•	T-Shirt: Write a function called make_shirt() that accepts a size and the text of a message that should be printed on the shirt. The function should print a sentence summarizing the size of the shirt and the message printed on it. Call the function.

*/
function make_shirt(size: string, message: string): void {
    console.log(`Shirt size: ${size}, Message: ${message}`);
}

// Call the function
make_shirt("medium", "Hello, World!");

Embed on website

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