Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 6th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. DEMO$ type hello.c
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int main(void) {
  6.         puts("Hello, OpenVMS Alpha world!");
  7.         return 0;
  8. }
  9.  
  10. DEMO$ cc hello
  11. DEMO$ link hello
  12. DEMO$ run hello
  13. Hello, OpenVMS Alpha world!