Contents: [slideshow]


About this document

The Edit, Compile, Link Cycle

Source Code

Source Code is the Human-Readable Stuff

C
The ubiquitous K&R programme, hello.c:
  #include <stdio.h>
          
  main() {       
      printf("Hello world!");
    }
Fortran
The Fortran 90 equivalent, hello.f90:
  program helloworld        
  print *, "Hello world!"        
  end program


...previousup (conts)next...