...
if "myWord" in query:
goto("ConfigFilePath.ib")
...
#Some text
String => "azerty" <=> 'azerty'
Number => 15.0 0.5
Integer => 15 0
bool => true false
none => none
list => {0,5,"hello"} => MyList[2] = "hello"
MyVar1
MyVar2
MyVar = toStr(10) #float/int -> str
MyVar = toFloat("10") #str/int -> float
MyVar = toInt("10") #float/str -> int
type(MyVar)
MyVar = 15
MyVar2 = "test"
MyVarList = {1,2,"hello"}
MyVar3 = (5+5)*2
if condition:
#Some code
Egal to: x == y
Not egal to: x != y
More than: x > y
More egal than: x >= y
Less than: x < y
Less egal than: x <=y
And: x and y
Or: x or y
In: x in y
Not: not(x)
_INDENTATION_ #Current condition level (int)
_CPATH_ #Current working path (string)
_query_ #The first call words (string)
_year_ #Current year (int)
_month_ #Current month (int)
_day_ #Current day (int)
_dayName_ #Name current day (string)
_hour_ #Current hour (int)
_minute_ #Current minute (int)
_second_ #Current second (int)
_lang_ #Default language (string)
_username_ #User session name (string)
CODE | language |
---|---|
bg_BG | Bulgarian |
cs_CZ | Czech |
da_DK | Danish |
de_DE | German |
el_GR | Greek |
en_US | English |
es_ES | Spanish |
et_EE | Estonian |
fi_FI | Finnish |
fr_FR | French |
hr_HR | Croatian |
hu_HU | Hungarian |
it_IT | Italian |
lt_LT | Lithuanian |
lv_LV | Latvian |
nl_NL | Dutch |
no_NO | Norwegian |
pl_PL | Polish |
pt_PT | Portuguese |
ro_RO | Romanian |
ru_RU | Russian |
sk_SK | Slovak |
sl_SI | Slovenian |
sv_SE | Swedish |
tr_TR | Turkish |
zh_CN | Chinese |
lbl 'MyLabelName'
#Some code
#...
jmp 'MyLabelName'
speak(MyText)
speak("Hello World")
Text = listen()
speak(listen())
print(MyText)
print("Hello World")
wait(5.0) #Wait 5 second
listLen = len(MyList)
msgLen = len(MyText)
myText = replace("myText","targetCharacter","newCharacter")
myList = split("myString","delimiter")
run("path/to/my/file.exe")
openBrowser("PathToTheBrowser","PUBLIC","URL")
openBrowser("PathToTheBrowser","PRIVATE","URL")
db_save("key",value)
myVar = db_load("key")
db_del("key")
db_exist("key") (return true or false)
WordBank/no.ibb
no;No;non;Non
wordList = loadWB("Path/WordBank.ibb") (return a list with all words)