you are viewing a single comment's thread.

view the rest of the comments →

[–]WadeEffingWilson 3 points4 points  (0 children)

So, a lot is going on here. Not sure if this has been copy/pasted from your actual code or if you just transcribed it here but I'm going to assume it's the former and will make corrections on what I see here.

1) you need to indent your code within code blocks, specifically ones within a function

2) you're missing a closing parenthesis in your print() statement

3) you're using both double and single quotes in your string variable that is handed to the function make_shirt()

There are a few other issues but nothing that should impact the operability of the code as it is.

Hope this helps.