Table of Contents

How to create a Gel application

Description

This guide describes how to set up your development environment create a simple Gel application.

Gel is the script language of Antiryad Gx.

Requirements

Download, install and register Antiryad Gx standard version, or aquire a professionnal license.

Create a project

In your init.gel file, write your program, example:

class init
      
import antiryadgx.gx_winbox
      
declarefunction nothing,main,nothing
      
/* ---- */
/* main */
/* ---- */
function main
  gx_winbox::request(string::"A first program!" ,-1,-1)
      
  return(0)
endfunction

Prepare the project

Executable compiler

Linux options

Windows options

MacOSX options

Android options

Compile the project