add some stuff

This commit is contained in:
tTh 2024-09-16 03:24:26 +02:00
parent f7d11b4178
commit 3ea16fbbc8
3 changed files with 16 additions and 0 deletions

View File

@ -1,6 +1,7 @@
plplotting
dessiner
printty
*.png
*.gif

View File

@ -1,6 +1,14 @@
INCS = -I/usr/include/plplot -I/usr/lib/x86_64-linux-gnu/fortran/modules/plplot
# sinple examples
printty: printty.f90 Makefile
gfortran -g $< $(INCS) -o $@
# more complex garbage
plplotting: plplotting.f90 Makefile
gfortran -g $< $(INCS) -lplplotfortran -o $@

7
code/fortran/printty.f90 Normal file
View File

@ -0,0 +1,7 @@
! new: Sun Sep 15 05:04:37 UTC 2024
program hello
implicit none
print *, "This is the 'printty' program"
end