A simple Forth interpreter based on SFI, modified to support arrays, nested loops, return stack and so on.More features are coming :Simply put your Forth code to sdcardmain.fth and start this app.Special word syntax:BUTTON:width height id labelkey labellen handlerkey handlerlen Event handler must be a user defined word, cannot be primitiveTEXTBOX:shows an oneline editable textbox.width height id GETTEXT:reads content of textbox with given id.id key lengthALERTDIALOG:Shows a dialog without any button, you must give title and message as input.titlekey titlelength msgkey msglength DIAL:Calls a phone number, the input is a string.key length Example:: BUTTONPRESS Squot; You typed: quot; 100 GETTEXT ALERTDIALOG ;30 50 100 TEXTBOX30 50 105 Squot; Press me quot; Squot; BUTTONPRESSquot; BUTTONIf you have questions or ideas, feel free to contact me at gusthy@gmail com