Menu
Coddy logo textTech

Recap - Status Report

Part of the Fundamentals section of Coddy's Lua journey — lesson 33 of 90.

challenge icon

Challenge

Easy

Create a comprehensive player status report that demonstrates your mastery of variables, data types, and output formatting. Declare three variables: playerName with the value "Shadow", totalScore with the value 4750, and isActive with the value true. Create a multi-line status report that displays each piece of information with descriptive labels using string concatenation and multiple print() statements.

Your report should display the player's name, score, and active status on separate lines, with each value clearly labeled and formatted professionally.

Try it yourself

-- TODO: Write your code here
-- Declare the three variables: playerName, totalScore, and isActive
-- Then create the multi-line status report using print() statements

All lessons in Fundamentals