aboutsummaryrefslogtreecommitdiff
path: root/src/functions.f90
diff options
context:
space:
mode:
Diffstat (limited to 'src/functions.f90')
-rw-r--r--src/functions.f9011
1 files changed, 11 insertions, 0 deletions
diff --git a/src/functions.f90 b/src/functions.f90
new file mode 100644
index 0000000..7216970
--- /dev/null
+++ b/src/functions.f90
@@ -0,0 +1,11 @@
+MODULE functions
+
+CONTAINS
+
+ FUNCTION my_exp(x) result(y)
+ real(kind=8), intent(in) :: x
+ real(kind=8) :: y
+ y = exp(x)
+ END FUNCTION my_exp
+
+END MODULE functions