Creating LFortran, an interactive Fortran compiler built on top of LLVM
1–10 of 52 posts
Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#2Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#3There might well be good answers to these; but it seems that if you want to make Fortran cool again, you have to provide a vision for what makes it special.
Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#4Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#5There seems to be a missing question in the FAQ: Why is Fortran worth saving? What are the advantages of writing code in Fortran? Why not just allow the ports to C++ to happen? There might well be good answers to these; but it seems that if you want to make Fortran cool again, you have to provide a vision for what makes it special.
Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#6There seems to be a missing question in the FAQ: Why is Fortran worth saving? What are the advantages of writing code in Fortran? Why not just allow the ports to C++ to happen? There might well be good answers to these; but it seems that if you want to make Fortran cool again, you have to provide a vision for what makes it special.
Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#7There seems to be a missing question in the FAQ: Why is Fortran worth saving? What are the advantages of writing code in Fortran? Why not just allow the ports to C++ to happen? There might well be good answers to these; but it seems that if you want to make Fortran cool again, you have to provide a vision for what makes it special.
Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#8There seems to be a missing question in the FAQ: Why is Fortran worth saving? What are the advantages of writing code in Fortran? Why not just allow the ports to C++ to happen? There might well be good answers to these; but it seems that if you want to make Fortran cool again, you have to provide a vision for what makes it special.
Fortran is a language more suited for numerical computing than C++. Modern Fortran is simpler, more maintable and more easily optimised than C++. Yes one could pick a subset of C/C++ and write fast numerical code but it would require more work and more discipline than using modern Fortran.
Re: Creating LFortran, an interactive Fortran compiler built on top of LLVM
#9There seems to be a missing question in the FAQ: Why is Fortran worth saving? What are the advantages of writing code in Fortran? Why not just allow the ports to C++ to happen? There might well be good answers to these; but it seems that if you want to make Fortran cool again, you have to provide a vision for what makes it special.
I'm going to take this in good faith and assume that you are thinking of old school FORTRAN77. Modern Fortran (90 and onwards) is a very different language in many ways whilst maintaining high backwards compatibility. You should check out modern versions of the language and code examples. Fortran is a language more suited for numerical computing than C++. Modern Fortran is simpler, more maintable and more easily opti…