MRI3JAQI322CZPZPI6S3BZUB5QARAAXMLV7I27PGRTQXAKFQPBAAC
"-- Some examples; feel free to delete them and they'll never return.",
'-- First example: you can perform simple calculations.',
"-- (scroll down if you're on a small screen..)",
"-- Try hitting the 'run' button above.",
"-- When you're done, tap on the right margin to go to the next example.",
'-- Some examples; feel free to delete.',
'-- First example: you can perform',
'-- simple calculations.',
'',
'-- print() calls show up in the area below.',
"-- Hit 'run' and then scroll through the results.",
'for i=1,20 do print(i) end',
'-- print() calls show up in the area',
"-- below. Hit 'run' and then try scrolling",
'-- through the results.',
'for i=1,20 do',
' print(i)',
'end',
'-- For animations, you can define various functions that will get called for you.',
'-- LÖVE supports functions of the form love.*,',
'-- for example, love.draw, love.update, etc.',
"-- You can't define those directly because Carousel Shell needs to define them for its UI, but you can define your own under car.*,",
'-- for example, car.draw, car.update, etc.',
'-- For animations, you can define various',
'-- functions that will get called for you.',
'-- LÖVE looks for functions called',
'-- love.draw, love.update, etc.',
"-- You can't define those directly (they",
'-- contain Carousel code), but you can',
'-- define car.draw, car.update,etc.',
'-- For interactivity, LÖVE provides functions like love.keypressed, love.mousepressed, etc.',
'-- As before, define the corresponding car.keypressed, car.mousepressed, etc.',
"-- A pane's interactive events only activate when the editor is hidden using the 'hide' button above.",
"-- Try running this example and then pressing and holding the mouse and pressing and releasing keys.",
'-- Then try hiding the editor and again pressing and holding the mouse and pressing and releasing keys',
'-- For interactivity, LÖVE provides',
'-- functions like love.keypressed,',
'-- love.mousepressed, etc.',
'-- As before, define car.keypressed,',
'-- car.mousepressed, etc.',
'-- These interactive events only activate',
'-- when the editor is hidden using the',
"-- 'hide' button above.",
'--',
'-- Try running this example and then',
'-- pressing and holding the mouse and',
'-- typing keys.',
'-- Then try again after hiding the editor.',
'points, line, rectangle, polygon, circle, arc, ellipse = g.points, g.line, g.rectangle, g.polygon, g.circle, g.arc, g.ellipse',
'points, line = g.points, g.line',
'rectangle, polygon = g.rectangle, g.polygon',
'circle, arc, ellipse = g.circle, g.arc, g.ellipse',
"-- Enough abbreviations, let's draw.",
'color(1,0,0) bgColor(0,1,0)',
'line(100,100, 200,300)',
"circle('fill', 200,100, 30)",
'-- once you load this pane, the abbreviations here will be available in any other pane',
"-- Hit 'run', Now they're available to other",
'-- panes.',