<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=windows-1255" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 11.00.9600.17207"></HEAD>
<BODY>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">Be aware there is also a lazy racket (#lang 
lazy)</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New"></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">#lang racket ; call by value<BR>(define (show x) (display x) 
(newline) x)<BR>(define (plus x y z)<BR>  (display "now we are in the 
procedure\n")<BR>  (+ x y z))<BR>"the procedure has been defined"<BR>(plus 
(show 1) (show 2) (show 3) )<BR>"the proceedure has been 
called"</FONT></SPAN></DIV>
<DIV> </DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">gives</FONT></SPAN></DIV>
<DIV> </DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">"the procedure has been defined"<BR>1<BR>2<BR>3<BR>now we are 
in the procedure<BR>6<BR>"the proceedure has been called"<BR>> 
</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New"></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">BUT</FONT></SPAN></DIV>
<DIV> </DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">#lang lazy ; call lazy<BR>(define (show x) (display x) 
(newline) x)<BR>(define (plus x y z)<BR>  (display "now we are in the 
procedure\n")<BR>  (+ x y z))<BR>"the procedure has been defined"<BR>(plus 
(show 1) (show 2) (show 3) )<BR>"the proceedure has been 
called"<BR></DIV></FONT></SPAN>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">gives</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New"></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New">"the procedure has been defined"<BR>now we are in the 
procedure<BR>1<BR>2<BR>3<BR>6<BR>"the proceedure has been called"<BR>> 
</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New"></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=453122310-20072014><FONT size=2 
face="Courier New"></FONT></SPAN> </DIV><BR>
<BLOCKQUOTE 
style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV lang=en-us class=OutlookMessageHeader dir=ltr align=left>
  <HR tabIndex=-1>
  <FONT size=2 face=Tahoma><B>From:</B> users 
  [mailto:users-bounces@racket-lang.org] <B>On Behalf Of </B>????? 
  ??????<BR><B>Sent:</B> domingo, 20 de julio de 2014 11:03<BR><B>To:</B> 
  users@racket-lang.org<BR><B>Subject:</B> [racket] Pass by 
  value/name/reference<BR></FONT><BR></DIV>
  <DIV></DIV>
  <DIV dir=rtl>
  <DIV dir=ltr>Hey :)</DIV>
  <DIV dir=ltr>How the arguments are passed in racket?</DIV>
  <DIV dir=ltr>by value/ reference/name?</DIV>
  <DIV dir=ltr><BR></DIV>
  <DIV dir=ltr>If u can add an example it will b good :)</DIV>
  <DIV dir=ltr>Thank U !</DIV></DIV></BLOCKQUOTE></BODY></HTML>