glue together (or tabify) function and command reference windows?
by Sven Schreiber
Hi everybody,
in the quest for shrinking the number of separate gretl windows floating
around the desktop, it was said that concrete ideas are wanted. So
here's a fairly concrete one:
Why not combine the windows with the built-in help (documentation) for
commands and functions? I'm talking about the windows you're getting
when you select Help/Command reference and Help/Function reference. Even
after all those years I need them and use them very often. Couldn't they
be put as two tabs into a single window?
thanks
sven
11 months, 3 weeks
For-loop over a 'bundled' string array
by Artur T.
Hi all,
Let's say we have a string array 'input'. The first example shows that
the for-loop can be used for printing each element of the array.
However, as the 2nd example shows, if the string array is stored in
bundle B this does not seem to work currently.
I could not find anything in the User's Guide about this restriction. Is
it expected that one cannot print the elements of B.input as can be done
for input itself?
<hansl>
input = defarray("R1", "R2", "R3")
bundle B = _(input)
# Prints each element
loop foreach i input
print "$i"
endloop
# prints only 'B.input'
loop foreach i B.input
print "$i"
endloop
</hansl>
Thanks
Artur
1 year