cranicule is here

This commit is contained in:
tTh
2026-06-25 06:43:33 +02:00
parent 31c9d1a802
commit de43a1810c
6 changed files with 46 additions and 2 deletions

21
Modules/SpitPGM.md Normal file
View File

@@ -0,0 +1,21 @@
# SpitPGM
What is a `.pgm` file ? And what we can do with this module ?
You have a bi-dimensionnal array of integer and you want show those
fancy datas as a fancy picture ? So we have a few funcs for doing
that..
```
subroutine spit_as_pgm_16(pic, fname)
integer, intent(in), dimension (:,:) :: pic
character (len=*), intent(in) :: fname
```
and
```
subroutine spit_as_pgm_16(pic, fname)
integer, intent(in), dimension (:,:) :: pic
character (len=*), intent(in) :: fname
```