erickstudios/clouddata/proyects/ErickOS/limalite++.pdf
erickstudios/clouddata/proyects/ErickOS/limalite++.pdf
ErickOS & lima lite++
Introduction
The .app format is the executable and editable scripts (if the extension is changed to .txt) that are the native executables of ErickOS, so this format is exclusive to ErickOS and cannot be executed outside of ErickOS
if you want to test the before app . open ErickOS terminal and put the nexts commands :
Fruit = i like apples
echo Fruit()
echo TextImput(Do you like apples?)
echo Thanks you :)
If you execute that you can see this :
i like apples
: (here is a textbox that says "Do you like apples?")
(the text)
Thanks you :)
Comments
This is a example for a comment
// this is a comment
NEVER try this , that make bugs
echo Hello World! // comment
Sintaxis
the sintaxis are this .
raw text : this is a example of raw text
echo hello world!
() : this sintaxis are using a variable for example the variable Hello
// define variables
Hello = Hello , World!
// using variables
echo Hello()
{} : this sintaxis is for use a key of a loaded json objet
// load json
set data file /ErickOS/HelloWorld/data.objet
// using the key named foo
echo foo{}
TextImput() : in ErickOS this sintaxis show a textbox window to use you need to put any text on () for example
// using a echo with textimput
echo TextImput(What is your favorite food?)
Variables
to define a variable put the name of a variable and "=" simbol
Sintaxis = sintaxis
for example if you want to define a variable named "My Variable" with value "Hello , World!" you need to put
My Variable = Hello , World!
if you want to use the variable on others commands put this see example and other example with lists
you can coppy the value of others variables to other variable for example coppyng the value of the variable Hello to Hello2
// define the variable hello
Hello = Hello , World!
// coppyng value of variable Hello to variable Hello2
Hello2 = Hello()
Echo
this show a simple static text
echo sintaxis
for example for show a static text that says Hello World from a raw text
echo Hello World
You can explore more in ErickOS lima lite++ idle terminal (Notes and Code). What are you going to create?