first real commit for the random stuff

This commit is contained in:
tth 2022-05-23 12:23:21 +02:00
parent 67ea2613e6
commit 7cde5e3b6b
5 changed files with 38 additions and 1 deletions

5
RandomStuff/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
essai
displaykinds

14
RandomStuff/Makefile Normal file
View File

@ -0,0 +1,14 @@
#
# Fortraneries by tTh -
#
all: essai displaykinds
# -----------------------------------------------------
essai: essai.f90 Makefile
gfortran -Wall $< -o $@
displaykinds: displaykinds.f90 Makefile
gfortran -Wall $< -o $@

View File

@ -1,9 +1,17 @@
# Random Stuff
Warning, non-sense inside !
Warning, isometime, there was non-sense inside !
## Utilities
- some basic mathematical functions.
## Debug tools
- display all the KIND= variants.
## Useless
- write a few simple cli games.

View File

@ -0,0 +1,5 @@
program displaykinds
print *, "display all kind's variants"
end program

5
RandomStuff/essai.f90 Normal file
View File

@ -0,0 +1,5 @@
program essai
print *, "essai"
end program