Subversion Repositories test

Compare Revisions

Ignore whitespace Rev 1 → Rev HEAD

/trunk/testc/hello.c
New file
0,0 → 1,12
//hello.c
 
#include <stdio.h>
#include <stdlib.h>
 
int main()
{
printf("Bonjour, tout le monde !\n");
 
return 0;
}
 
/trunk/testc/Makefile
New file
0,0 → 1,13
 
PROG = hello
 
SRC = hello.c
 
OPT = -Wall
 
$(PROG): $(SRC) Makefile
cc $(SRC) $(OPT) -o $(PROG)
 
clean:
rm $(PROG)
 
/trunk/testf90/gerard_majax.f90
New file
0,0 → 1,0
coucoucoucouocuocu
/trunk/testf90/toto.f90
New file
0,0 → 1,9
program toto
 
implicit none;
 
int coucou;
int blabla;
int mipmip;
 
end program toto
/trunk/testf90/toto.f
New file
0,0 → 1,10
program toto
 
implicit none;
 
int coucou;
int blabla;
int mipmip;
int tata;
int titi;
end program toto