Skip to content

Commit 9bcc10c

Browse files
committed
docs: added example package
1 parent 1487a92 commit 9bcc10c

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# preprocess_fypp
2+
My cool new project!
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
name = "preprocess_fypp"
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#:set LOGLEVEL = 1
2+
print *, "LOGLEVEL: ${LOGLEVEL}$"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#:set LOGLEVEL = 2
2+
print *, "LOGLEVEL: ${LOGLEVEL}$"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module preprocess_fypp
2+
implicit none
3+
private
4+
5+
public :: say_hello
6+
contains
7+
subroutine say_hello
8+
print *, "Hello, preprocess_fypp!"
9+
end subroutine say_hello
10+
end module preprocess_fypp
Binary file not shown.

0 commit comments

Comments
 (0)