app

Used to manage the interface of the application.

The basics

Basicly create one of button.

app new comp -> $windowName as Button:
"inner": "mytext",
"Width": "50",
"Height": "50".
;
Rule
[new]
[comp]
[->]
[$]
[as]
[?()]
[:]
[":"]

Example

set $windowName (window):
"Title": "Calc",
"Width": "270",
"Height": "330"
;

app new comp -> $windowName as Button:
"inner": "mytext",
"Width": "50",
"Height": "50".
;

show $windowName;
//Coded with BH Beta 0.5.2
Output:

Last updated