Edit Fortran Code with Syntax Highlighter and AutoCompletion. Copy after you are done.
No Installations necessary.
Features:
100% Free
Edit Code Offline
Syntax Highlighter
Autocompletion
Auto-Indentation
Undo/Redo
Copy code
Resizable to full screen
Privacy-focused. No code uploaded.
PROGRAM QnA
IMPLICIT NONE
CHARACTER(LEN=50) :: QUESTION
WRITE (*,*) "Welcome to the QnA program!"
WRITE (*,*) "Ask me a question: "
READ (*,'(A)') QUESTION
IF (INDEX(UPCASE(QUESTION), "WHAT IS THIS WEB APP?") /= 0) THEN
WRITE (*,*) "This web app is a Fortran code editor with a syntax highlighter, autocompletion, and many more features!"
WRITE (*,*) "It allows you to write, and run edit code directly in the browser, without needing to install any software."
WRITE (*,*) "The syntax highlighter makes your code look beautiful, and the autocompletion feature helps you write code faster and more accurately."
WRITE (*,*) "Plus, it has many other features like the ability to undo/redo, copy or export code, work offline etc!"
ELSE
WRITE (*,*) "Well, what are you waiting for, start editing your code right now."
END IF
END PROGRAM QnA