Text
Text values (strings) are the foundation of user-facing content in Rhyme apps. They represent any sequence of characters - from simple labels to complex messages.
Creating Text Values
// Simple text
$greeting = "Hello, World!"
// Text with quotes
$quote = 'She said "Hello"'
// Multi-line text
$address = `123 Main Street
Apartment 4B
New York, NY 10001`
Common Uses
- UI labels and messages
- User input storage
- Dynamic content generation
- Data formatting
More content coming soon…