Fortraneries/SoundBrotching/soundbrotch.f90

26 lines
524 B
Fortran
Raw Normal View History

2022-02-07 23:17:22 +01:00
module soundbrotch
implicit none
2022-03-31 22:14:11 +02:00
! ---------------------------------------------------------
type t_sample
integer :: left
integer :: right
end type
! ---------------------------------------------------------
2022-02-07 23:17:22 +01:00
contains
! ---------------------------------------------------------
subroutine soundbrotch_version ()
2022-03-31 22:14:11 +02:00
write(0, '(A)') "*** this is soundbrotch version alpha 666"
2022-02-07 23:17:22 +01:00
end subroutine
! ---------------------------------------------------------
end module