Blame view

src/idl_misc/JPBLib_for_Dustemwrap/General/strings2file.pro 164 Bytes
6db3528a   Jean-Philippe Bernard   adding librairies...
1
2
3
4
5
6
7
8
9
10
11
12
13
PRO strings2file,strs,file

Nstrs=n_elements(strs)

openw,unit,file,/get_lun
FOR i=0L,Nstrs-1 DO BEGIN
  printf,unit,strs(i)
ENDFOR

close,unit
free_lun,unit

END