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

[REBOL] object function error??

From: raimunddold::web::de at: 23-Jun-2001 9:33

Hi, whats wrong with this?? REBOL [] book: make object! [ author: title: info: none print: func [] [ print [ author ": " title ] ] ] my-book: make book[] my-book/author: "Raimund Dold" my-book/title: "Is this an error?" my-book/print If I evaluate the lines above I get the following: ** Internal Error: Stack overflow ** Near: print [author ": " title] Whats wrong? Raimund