3.7. Displaying current program data
The LLDB debugger provides data on variables of any complexity, any valid expressions, and function call return values. You can use LLDB to display data relevant to the program state.
Prerequisites
Procedure
Display the current value of a certain variable, expression, or return value:
(lldb) print <data_name>Replace
<data_name>with data you want to display.