This guide describes how to set up your development environment create a simple Gel application.
Gel is the script language of Antiryad Gx.
Download, install and register Antiryad Gx standard version, or aquire a professionnal license.
In your init.gel file, write your program, example:
import antiryadgx.gx_winbox class boot declarefunction nothing,main,nothing /* ---- */ /* main */ /* ---- */ function main gx_winbox::request(string::"A first program!" ,-1,-1) return(0) endfunction