Hi,
The README.md file, in the _master branch_, describes that with the option _new_ the files: fpm.toml, README.md, .gitignore, src/project_name.f90, app/main.f90 and test/main.f90 are built. However, in the _pre-release v0.1.3_ and the _master branch_, this option only generates the files: fpm.toml and README.md.
is the README.md file, in _master branch_, outdated?
The README currently describes the behaviour of the Haskell version for bootstrapping Fortran fpm, rather than the behaviour of the actual Fortran implementation. The command line interfaces and the behaviour for the fpm new command unfortunately have diverged between those two version, which makes it more difficult to accurately describe the expected behaviour.
I think the README should reflect the behaviour of the Fortran fpm version rather than the Haskell version.
With Fortran fpm the command fpm new test_project produces:
test_project
โโโ .git/
โโโ .gitignore
โโโ README.md
โโโ app
โย ย โโโ main.f90
โโโ fpm.toml
โโโ src
โย ย โโโ test_project.f90
โโโ test
โโโ main.f90
While with Haskell fpm, no Fortran source is generated:
test_project
โโโ .git/
โโโ .gitignore
โโโ README.md
โโโ fpm.toml
This seems to be a bug in the Haskell version than.