Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] From word to none

From: hallvard::ystad::helpinhand::com at: 18-Jun-2003 22:03

Hi I have a hash of values in a file, and in this hash, some values are none! The file looks like this: make hash! ["some string" none none "some string" 55 438 {"29621"} ] I go through the hash with foreach, like this: foreach [a b c] hash [ if none? b [ print "We've got a none! value" ] ] Now here's my problem: 'foreach gives the none values as word! values. How can I get them as "real" none! values? Thanks for any help, ~H