<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"><base></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div>I don’t think you even need to serialize it for that:</div><div>(define my-hash (make-hash))</div><div>(define out (open-output-file “dump.dat”))</div><div>(write my-hash out)</div><div>(close-output-port out)</div><div><br></div><div>… later</div><div>(define in (open-input-file “dump.dat”))</div><div>(define my-hash (read in))</div><div>(close-input-port in)</div><br><div><div>On Jul 28, 2014, at 11:59 PM, Roman Klochkov <<a href="mailto:kalimehtar@mail.ru">kalimehtar@mail.ru</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">You may also export all hash to file and later read it.<br><br><a href="http://docs.racket-lang.org/reference/serialization.html">http://docs.racket-lang.org/reference/serialization.html</a><br><br>(require racket/serialize)<br><br>(define my-hash (make-hash))<br><br>(define out (open-output-file "dump.dat"))<br>(write (serialize my-hash) out)<br>(close-output-port out)<br><br>... later<br>(define in (open-input-file "dump.dat"))<br>(define my-hash (deserialize (read in)))<br>(close-input-port in)<br><br>Mon, 28 Jul 2014 17:21:40 -0300 от Henry Lenzi <<a href="mailto:henry.lenzi@gmail.com">henry.lenzi@gmail.com</a>>:<br><blockquote style="border-left-width: 1px; border-left-style: solid; border-left-color: rgb(8, 87, 166); margin: 10px; padding: 0px 0px 0px 10px;"><div id=""><div class="js-helper js-readmsg-msg"><base target="_self" href="https://e.mail.ru/"><div id="style_14065800100000000796_BODY">Hi Neil --<br><br>So how do you export hash keys as symbols to a file that can be read<br>in again, not as string?<br><br>Now, I haven't gotten around to reading the whole of Racket Scheme's<br>documentation... Things are looking kind of hard.<br><br>What I'm attempting to do is then read back the symbols defined, such<br>as the one below:<br><br>(define hctz25 "Hydrochlorothiazide 25mg")<br><br>> (close-input-port in)<br>> (define in (open-input-file "Recipe.txt"))<br>> (string->symbol (read-line in))<br>'|'hctz25|<br><br>But what I really want is the "hctz25" symbol that evaluates to a<br>string. If I don't use string->symbol, I get the string "hctz25". And<br>why the bars ("|")? I've read<br><br> <a href="http://docs.racket-lang.org/reference/reader.html#%28part._parse-hashtable%29" target="_blank">http://docs.racket-lang.org/reference/reader.html#%28part._parse-hashtable%29</a><br><br>but it didn't help me much.<br><br>Of course, the ultimate purpose would be to re-evaluate the imported<br>symbol and reconstruct a medical recipe. The purpose of these<br>baby-steps exercises is porting a medical recipe program I've written<br>originally in Forth that allowed me to service 5.000 patients creating<br>a little database of shorthand recipes that then expand into real<br>medical recipes. I got hundreds of patients on renewable recipes for,<br>say, hypertension. Hand writing is no fun. Typing them in Word is no<br>fun. The hospital has is its own software, but it's is a load of<br>baloney, extremely buggy, if you ask me, so I'm rolling my own again,<br>except I want to print directly on the model paper our service uses,<br>so I want graphics like Racket Scheme has (very good capabilities, as<br>far as my needs are concerned).<br><br>With Forth, it's very easy to design DSLs, because there's no syntax<br>and you get a lot of advanced features for free. For instance, there's<br>no need to write a parser for my little language. However, since Forth<br>implementations fall short of dealing with images, graphics (unless<br>you take the royal road to pain and learn to program for the Win32 API<br>and how it works for a particular Forth vendor), I'm looking at Racket<br>Scheme.<br><br>TIA,<br><br>Henry Lenzi<br><br><br><br><br><br><br><br><br>On Mon, Jul 28, 2014 at 4:46 PM, Neil Van Dyke <<a href="x-msg://18/compose?To=neil@neilvandyke.org">neil@neilvandyke.org</a>> wrote:<br>> I don't know the current state of the "eval" docs in the manual, but I think<br>> they should have a big warning at the very front, intended to scare away<br>> newbies.<br>><br>> Remember that Racket is often used in conjunction with many different<br>> Scheme-based and other Lisp-based textbooks and courses. It seems that many<br>> CS instructors and textbook authors like to talk about ``EVAL'' (as an<br>> abstract operation) when talking about some models of evaluation, and "eval"<br>> (as an accessible language binding) to say, gosh, aren't dynamic languages<br>> interesting and powerful. So, we can't blame every fourth newbie for trying<br>> to use "eval" unnecessarily, in ways that make for bad software engineering.<br>><br>> Given this reality of confusing instruction, I'm thinking that, as a<br>> reactive measure, "#lang paddle" will disable "eval" by default. Attempting<br>> to use "eval" will give you an error message, unless you have an assertion<br>> form like<br>> "(i-have-read-the-foo-document-and-understand-that-eval-is-usually-the-wrong-thing-but-honest-i-know-what-i-am-doing)".<br>><br>> Cheers,<br>> Neil V.<br>><br>> Vincent St-Amour wrote at 07/28/2014 02:21 PM:<br>><br>>> Maybe this should be linked to from the `eval' docs?<br>>><br>>><br>>><span class="Apple-converted-space"> </span><a href="http://blog.racket-lang.org/2011/10/on-eval-in-dynamic-languages-generally.html" target="_blank">http://blog.racket-lang.org/2011/10/on-eval-in-dynamic-languages-generally.html</a><br>>><br>>> Vincent<br>>><br>>><br>>> At Sun, 27 Jul 2014 16:16:52 -0400,<br>>> Neil Van Dyke wrote:<br>>>><br>>>> Maybe there should be a periodic public service announcement about not<br>>>> using "eval". This time I will communicate in FAQ format:<br>>>><br>>>> Q: How do I use eval?<br>>>> A: Don't use eval.<br>>>><br>>>> Q: But don't so many academic books feature eval prominently, so doesn't<br>>>> that mean I should use try to eval?<br>>>> A: Those books use eval for pedagogic reasons, or because the author is<br>>>> enamored of some theoretical appeal of eval, or because the author wants<br>>>> to watch the world burn. Don't use eval.<br>>>><br>>>> Q: But, but, but, I am just starting to learn, and eval seems to do what<br>>>> I need.<br>>>> A: Eval is almost certainly not what you want. Learn how to use the<br>>>> other basics effectively. Don't use eval.<br>>>><br>>>> Q: I now am very comfortable with the language, I am aware that I should<br>>>> avoid eval in almost all cases, and I can tell you why eval is actually<br>>>> the right thing in this highly unusual case.<br>>>> A: Cool, that's why eval is there.<br>>>><br>>>> Neil V.<br>>>><br>><br>> ____________________<br>> Racket Users list:<br>><span class="Apple-converted-space"> </span><a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>____________________<br>  Racket Users list:<br>  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br></div><base target="_self" href="https://e.mail.ru/"></div></div></blockquote><br><br>--<span class="Apple-converted-space"> </span><br>Roman Klochkov<br>____________________<br> Racket Users list:<br> <a href="http://lists.racket-lang.org/users">http://lists.racket-lang.org/users</a></div></blockquote></div><br></body></html>