From your home directory (use ``cd'' in UNIX). Open a file called hello_world.pro (use ``emacs'', ``xemacs'', ``vi'', or whatever you are familiar with). Put the lines below in this file. This is your first IDL program (it's traditional to start computing courses with a hello world program -- and this one is no different).
print,'Hello world' end
Enter idl (type ``IDL'' at the UNIX prompt)
Type
.run hello_worldThe program should run, printing to your IDL screen. Note that you always need an ``end'' at the end of an IDL file.