K
Kleidemos
I've a project.
This is a general idea:
[]
From
#declare
i as 9
c as 'c'
#declare_end
#main_program
init;
print(i)
print(c)
#main_program_end
; name, arg
#function print var
stampa('Valore == ', var, '\n')
#function_end
We have, ready to compile(and internal compiled):
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int i = 9;
char c = 'c';
printf("Valore == %s", &c);
printf("Valore == %i", i);
return 0;
}
The compiling of program is simple.
We convert the script into the C corrispondent and we compile(not
visible for user) the program.
Then we get to user the result.
For the program we use ANSI/ISO C.
[]
Is it possible???
P.S: If I'm OT here, please, we'll let me know.
--
Tnk
Luca "Kleidemos" Francesca
Un computer a un altro quando si incontrano:
"Ciao, come ti boota oggi???"
This is a general idea:
[]
From
#declare
i as 9
c as 'c'
#declare_end
#main_program
init;
print(i)
print(c)
#main_program_end
; name, arg
#function print var
stampa('Valore == ', var, '\n')
#function_end
We have, ready to compile(and internal compiled):
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int i = 9;
char c = 'c';
printf("Valore == %s", &c);
printf("Valore == %i", i);
return 0;
}
The compiling of program is simple.
We convert the script into the C corrispondent and we compile(not
visible for user) the program.
Then we get to user the result.
For the program we use ANSI/ISO C.
[]
Is it possible???
P.S: If I'm OT here, please, we'll let me know.
--
Tnk
Luca "Kleidemos" Francesca
Un computer a un altro quando si incontrano:
"Ciao, come ti boota oggi???"