index
:
esotericFORTRAN.git
main
Lexer, parser and compiler for a FORTRAN like programming language, with an IDE
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
main.c
blob: 055bc9dd939051239ea91ff98f041bdcac1a61f7 (
plain
)
1
2
3
4
5
6
7
8
9
#include
<stdio.h>
int
main
(){
float
a
;
a
=
6
;
if
(
a
>
2
){
a
=
a
+
0.5
;
}
printf
(
"%f"
,
a
);
}