first real commit for the random stuff
This commit is contained in:
parent
67ea2613e6
commit
7cde5e3b6b
5
RandomStuff/.gitignore
vendored
Normal file
5
RandomStuff/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
|
||||||
|
essai
|
||||||
|
displaykinds
|
||||||
|
|
14
RandomStuff/Makefile
Normal file
14
RandomStuff/Makefile
Normal 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 $@
|
||||||
|
|
@ -1,9 +1,17 @@
|
|||||||
# Random Stuff
|
# Random Stuff
|
||||||
|
|
||||||
Warning, non-sense inside !
|
Warning, isometime, there was non-sense inside !
|
||||||
|
|
||||||
## Utilities
|
## Utilities
|
||||||
|
|
||||||
|
- some basic mathematical functions.
|
||||||
|
|
||||||
## Debug tools
|
## Debug tools
|
||||||
|
|
||||||
|
- display all the KIND= variants.
|
||||||
|
|
||||||
|
## Useless
|
||||||
|
|
||||||
|
- write a few simple cli games.
|
||||||
|
|
||||||
|
|
||||||
|
5
RandomStuff/displaykinds.f90
Normal file
5
RandomStuff/displaykinds.f90
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
program displaykinds
|
||||||
|
|
||||||
|
print *, "display all kind's variants"
|
||||||
|
|
||||||
|
end program
|
5
RandomStuff/essai.f90
Normal file
5
RandomStuff/essai.f90
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
program essai
|
||||||
|
|
||||||
|
print *, "essai"
|
||||||
|
|
||||||
|
end program
|
Loading…
Reference in New Issue
Block a user