From 7cde5e3b6b8a07f5b28d69ca59b380e8615f76c9 Mon Sep 17 00:00:00 2001 From: tth Date: Mon, 23 May 2022 12:23:21 +0200 Subject: [PATCH] first real commit for the random stuff --- RandomStuff/.gitignore | 5 +++++ RandomStuff/Makefile | 14 ++++++++++++++ RandomStuff/README.md | 10 +++++++++- RandomStuff/displaykinds.f90 | 5 +++++ RandomStuff/essai.f90 | 5 +++++ 5 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 RandomStuff/.gitignore create mode 100644 RandomStuff/Makefile create mode 100644 RandomStuff/displaykinds.f90 create mode 100644 RandomStuff/essai.f90 diff --git a/RandomStuff/.gitignore b/RandomStuff/.gitignore new file mode 100644 index 0000000..657f99a --- /dev/null +++ b/RandomStuff/.gitignore @@ -0,0 +1,5 @@ + + +essai +displaykinds + diff --git a/RandomStuff/Makefile b/RandomStuff/Makefile new file mode 100644 index 0000000..7ef5b1a --- /dev/null +++ b/RandomStuff/Makefile @@ -0,0 +1,14 @@ +# +# Fortraneries by tTh - +# + +all: essai displaykinds + +# ----------------------------------------------------- + +essai: essai.f90 Makefile + gfortran -Wall $< -o $@ + +displaykinds: displaykinds.f90 Makefile + gfortran -Wall $< -o $@ + diff --git a/RandomStuff/README.md b/RandomStuff/README.md index 2ed34a4..627bbac 100644 --- a/RandomStuff/README.md +++ b/RandomStuff/README.md @@ -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. + + diff --git a/RandomStuff/displaykinds.f90 b/RandomStuff/displaykinds.f90 new file mode 100644 index 0000000..c73069e --- /dev/null +++ b/RandomStuff/displaykinds.f90 @@ -0,0 +1,5 @@ +program displaykinds + + print *, "display all kind's variants" + +end program diff --git a/RandomStuff/essai.f90 b/RandomStuff/essai.f90 new file mode 100644 index 0000000..a7c4ad5 --- /dev/null +++ b/RandomStuff/essai.f90 @@ -0,0 +1,5 @@ +program essai + + print *, "essai" + +end program