aboutsummaryrefslogtreecommitdiff
path: root/hello_world
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-04-30 00:52:06 -0600
committerGitHub <noreply@github.com>2020-04-30 00:52:06 -0600
commitf071fcc750da95e008f622d96fb033a4b0f73039 (patch)
tree787ab0d77c9db8a6c2982cd1b994e7bf88731f5f /hello_world
parenta8dabeea48210450e6b1088c95abf80358f40e3c (diff)
parentd6e5d3055946e58bd17dfc156bcffe88ef08b5dd (diff)
downloadfpm-f071fcc750da95e008f622d96fb033a4b0f73039.tar.gz
fpm-f071fcc750da95e008f622d96fb033a4b0f73039.zip
Merge pull request #54 from everythingfunctional/AdditionalTesting
Additional testing
Diffstat (limited to 'hello_world')
-rw-r--r--hello_world/.gitignore1
-rw-r--r--hello_world/app/main.f903
-rw-r--r--hello_world/fpm.toml2
3 files changed, 6 insertions, 0 deletions
diff --git a/hello_world/.gitignore b/hello_world/.gitignore
new file mode 100644
index 0000000..a007fea
--- /dev/null
+++ b/hello_world/.gitignore
@@ -0,0 +1 @@
+build/*
diff --git a/hello_world/app/main.f90 b/hello_world/app/main.f90
new file mode 100644
index 0000000..d16022b
--- /dev/null
+++ b/hello_world/app/main.f90
@@ -0,0 +1,3 @@
+program hello_world
+ print *, "Hello, World!"
+end program hello_world
diff --git a/hello_world/fpm.toml b/hello_world/fpm.toml
new file mode 100644
index 0000000..d715850
--- /dev/null
+++ b/hello_world/fpm.toml
@@ -0,0 +1,2 @@
+name = "hello_world"
+compiler = "gfortran"