├── .gitignore ├── LICENSE.md ├── README.md ├── episode_2 ├── .vscode │ └── settings.json ├── README.md ├── getName.f90 └── helloVSCode.f90 ├── episode_3 ├── .vscode │ └── tasks.json ├── README.md ├── get_name.f90 └── hello_VS_code.f90 └── episode_4 ├── .vscode ├── launch.json └── tasks.json ├── Makefile ├── README.md └── main.f90 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /episode_2/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_2/.vscode/settings.json -------------------------------------------------------------------------------- /episode_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_2/README.md -------------------------------------------------------------------------------- /episode_2/getName.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_2/getName.f90 -------------------------------------------------------------------------------- /episode_2/helloVSCode.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_2/helloVSCode.f90 -------------------------------------------------------------------------------- /episode_3/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_3/.vscode/tasks.json -------------------------------------------------------------------------------- /episode_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_3/README.md -------------------------------------------------------------------------------- /episode_3/get_name.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_3/get_name.f90 -------------------------------------------------------------------------------- /episode_3/hello_VS_code.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_3/hello_VS_code.f90 -------------------------------------------------------------------------------- /episode_4/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_4/.vscode/launch.json -------------------------------------------------------------------------------- /episode_4/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_4/.vscode/tasks.json -------------------------------------------------------------------------------- /episode_4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_4/Makefile -------------------------------------------------------------------------------- /episode_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_4/README.md -------------------------------------------------------------------------------- /episode_4/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llamm-de/VSCode_Fortran_Tutorial/HEAD/episode_4/main.f90 --------------------------------------------------------------------------------