IBM 7090 FORTRAN TRAINING SYSTEM - YEAR 1963
🖥️ FORTRAN TIME MACHINE 🕐
LEVEL: 1/10
SCORE: 0
HINTS: 3
Welcome, Time Traveler! You've been sent back to 1963 to help debug the IBM 7090 mainframe.
Your first task: Write a simple FORTRAN program to print "HELLO WORLD" to the console.
Remember, in classic FORTRAN, we use PRINT statements!
Hint will appear here...
✨ EXCELLENT WORK! The mainframe is responding! ✨
1
OUTPUT:
Waiting for code execution...
Error message will appear here...
FORTRAN QUICK REFERENCE:
• Programs start with PROGRAM name
• End with END PROGRAM name
• PRINT *, 'text' for output
• Variables: INTEGER, REAL, CHARACTER
• Comments start with C or !
• DO loops: DO i = 1, 10
• IF-THEN-ELSE for conditionals
• End with END PROGRAM name
• PRINT *, 'text' for output
• Variables: INTEGER, REAL, CHARACTER
• Comments start with C or !
• DO loops: DO i = 1, 10
• IF-THEN-ELSE for conditionals