Re: Turning a string into a variable
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Turning a string into a variable
- From: "Ashwin Hirschi" <deery@...>
- Date: Thu, 1 May 2003 21:07:00 +0200
> Let's say:
>
> x = "foo"
>
> But now I want to see if foo itself is an assigned variable (i.e. foo
> ~= nil --- but since I don't know the sting contained in x, I can't
> do this directly)
Try getglobal(x).
AH.