Home
Name Modified Size InfoDownloads / Week
decoder 2014-03-19
encoder 2014-03-19
README.txt 2014-03-19 882 Bytes
Totals: 3 Items   882 Bytes 0
RunPL
Run Programming Language

A new set of language based

it´s compiled in gcc and g++

It's a project to analyse the efficient of enc-code versus byte-code.

the idea byte-code means in pratice smaller interpreter.

CHECK THE MODEL FILE for concepts semantics

enc-code means smaller code size and bigger speed. do not generate another code. only encode to a simpler code. mainly to char-index code that points to memmory structures, and interprets it.

at the time still interprets the code and run's int

EXAMPLE:

var a << 0
var c << 0

function test():number
    ;'funcao teste()'
    << a
endf

'teste de perfomance com ciclo de 100 000 000';

spin a from 0 to 100000000
    c = test()
    if a == 10000 do
		'atingiu o valor de '+ a;
        break
    endif
next

debug a
debug c

;a=test()
if c do 'valor de C maior que 0';


Source: README.txt, updated 2014-03-19