├── .github └── workflows │ ├── claude-code-review.yml │ └── claude.yml ├── INSTRUCTIONS.md ├── LICENSE ├── README.md ├── install_gfortran_build_and_run_unit_tests.sh ├── interpreter.f90 ├── papers ├── Artigo - Um Avaliador de Expressoes em Fortran.pdf └── Paper - A Fortran Expression Evaluator.pdf ├── test.f90 └── unit_tests.f90 /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/INSTRUCTIONS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/README.md -------------------------------------------------------------------------------- /install_gfortran_build_and_run_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/install_gfortran_build_and_run_unit_tests.sh -------------------------------------------------------------------------------- /interpreter.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/interpreter.f90 -------------------------------------------------------------------------------- /papers/Artigo - Um Avaliador de Expressoes em Fortran.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/papers/Artigo - Um Avaliador de Expressoes em Fortran.pdf -------------------------------------------------------------------------------- /papers/Paper - A Fortran Expression Evaluator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/papers/Paper - A Fortran Expression Evaluator.pdf -------------------------------------------------------------------------------- /test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/test.f90 -------------------------------------------------------------------------------- /unit_tests.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivomarsoares-personal/Fortran-Expression-Evaluator/HEAD/unit_tests.f90 --------------------------------------------------------------------------------