> Undefined: (cig-aux)
this isnt an error, just a load warning due to the way and order cig is loaded
> Running
> #!/u0/zilla/binM/scsh -s
> (map (lambda (arg) (display arg) (display " "))
> command-line-arguments)
> (newline)
> gives:
> Error: EOF inside block comment -- no closing !#
also, not an error. you need to end the comment begun with #! with a !#.
i believe the reasons behind this are documented in the manual. try:
#!/u0/zilla/binM/scsh -s
!#
(map (lambda (arg) (display arg) (display " "))
command-line-arguments)
(newline)
also, (format #t "~A " arg) for those that like that kinda of thing.
-bri
|