waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

calculator.f (278B)


      1         module calculator
      2           implicit none
      3         contains
      4           subroutine add (a, b, output)
      5             integer, intent (in) :: a, b
      6             integer, intent (out) :: output
      7             output = a + b
      8           end subroutine add
      9         end module calculator