Template repo for tiny cross-platform apps that can be modified on phone, tablet or computer.
at main 21 lines 802 B view raw
1{ 2 {type='rows', default={font={size=21}, line_height=25}, 3 {type='text', font={size=28}, line_height=50, 4 {'Lua@{Lua} > valores y tipos', 5 attrs={ 6 Lua={target='--lua'}, 7 }}, 8 }, 9 {type='filler', height=15}, 10 {type='text', 'Las variables en Lua pueden contener algunos tipos de cosas, incluyendo:'}, 11 {type='text', '- números como 0, 3, -5 o 2.5'}, 12 {type='text', '- cadenas como "abc" o \'hola que tal\''}, 13 {type='text', '- booleanos true o false'}, 14 {type='text', 15 {'- fn@{funciones}', attrs={fn={target='--lua-fn'}}}, 16 target='--lua-def'}, 17 {type='text', 18 {'- tables@{tablas} como {1, 2, 3} o {perros=1}', attrs={tables={target='--lua-table'}}}}, 19 {type='text', '- nil, que representa la ausencia de otras cosas'}, 20 } 21}