unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Mortimer Cladwell <mbcladwell@gmail.com>
To: Jean Abou Samra <jean@abou-samra.fr>
Cc: guile-user@gnu.org, tomas@tuxteam.de
Subject: Re: Re: intern a top level variable
Date: Wed, 16 Aug 2023 15:17:06 -0400	[thread overview]
Message-ID: <CAOcxjM7j+Jo5NP_ZNvmXcVo92_QvGNa8RYv=CLuX8e7Bq94EhQ@mail.gmail.com> (raw)
In-Reply-To: <5306923bbfa46630b22c6dc978e89b60d0565ad9.camel@abou-samra.fr>

I would like to define a variable within a method but make it available to
the entire module - globally.
Take a string "abc" convert to a variable (symbol??) abc and set to the
string value "def".
The values of name and data are unknown - they are variable.
In this example the variable (symbol??) abc should evaluate to "def".

Thanks tomas you set me on the correct path. The following works:

(define (test-intern)
(let* ((name "abc")
       (data "def")
       )
   (module-define! (current-module)  (string->symbol name) data))
  )

scheme@(guile-user)> (test-intern)
scheme@(guile-user)> abc
$14 = "def"

So yes I will need to read more about interning.
Thanks
Mortimer



On Wed, Aug 16, 2023 at 12:13 PM Jean Abou Samra <jean@abou-samra.fr> wrote:

> Le mercredi 16 août 2023 à 10:55 -0400, Mortimer Cladwell a écrit :
>
> I would like to intern and assign a value within a method:
>
> (define (test-intern)
> (let* ((name "abc")
>        (data "def")
>        (name-symbol (gensym name))
>        )
>   (pretty-print (string-append "symbol: " (symbol->string name-symbol)))
>   (set! name-symbol data)))
>
> scheme@(guile-user)> (test-intern)
> "symbol: abc3301"
> scheme@(guile-user)> abc3301
> ;;; <unknown-location>: warning: possibly unbound variable `abc3301'
> ERROR: In procedure module-lookup: Unbound variable: abc3301
>
>
>
> Sorry, but it's not clear to me what you mean by "intern and assign a
> value", and I don't think it will be clear to someone else.
>
> Can you be more precise please?
>
> I don't understand why you expect "abc3301" to be bound after running
> (test-intern). That (test-intern) call just creates a symbol, which is
> interned as a symbol, meaning that creating another (interned) symbol with
> the same name will reuse the same symbol value. But there is no reason why
> it shoud be bound to a variable. Symbol interning just applies to symbols
> as values, it has nothing to do with variables.
>
>
>


  parent reply	other threads:[~2023-08-16 19:17 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-16 14:55 Re: intern a top level variable Mortimer Cladwell
2023-08-16 16:13 ` Jean Abou Samra
2023-08-16 17:58   ` tomas
2023-08-16 19:17   ` Mortimer Cladwell [this message]
2023-08-16 20:35     ` Taylan Kammer
2023-08-17  6:07       ` Mortimer Cladwell
2023-08-20 13:56     ` Jean Abou Samra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAOcxjM7j+Jo5NP_ZNvmXcVo92_QvGNa8RYv=CLuX8e7Bq94EhQ@mail.gmail.com' \
    --to=mbcladwell@gmail.com \
    --cc=guile-user@gnu.org \
    --cc=jean@abou-samra.fr \
    --cc=tomas@tuxteam.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).