<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
#lang racket<br>
<br>
(define-struct foo (x y) #:mutable)<br>
(define foo-instance (make-foo 1 2))<br>
(set-foo-x! foo-instance 5)<br>
(foo-x foo-instance)<br>
<br>
On 06/24/2010 06:09 PM, Insik Cho wrote:
<blockquote
 cite="mid:AANLkTinOCNjNSuqyKHmUW5kG8VasN7xdK0JSWlXxYPjh@mail.gmail.com"
 type="cite">
  <pre wrap="">Hi buddies,

When I make an instance of a structure, I want to modify of the value of
members of the instance.

So, can I refer a member of a structure as a referent to update it directly?

- Joe

  </pre>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_________________________________________________
  For list-related administrative tasks:
  <a class="moz-txt-link-freetext" href="http://lists.racket-lang.org/listinfo/users">http://lists.racket-lang.org/listinfo/users</a></pre>
</blockquote>
<br>
</body>
</html>