[Factor-talk] Loading vocabularies from the command line

2008-11-18 Thread Kio M. Smallwood
Hi, When I try to run some factor code on the command line like this: (example taken from ~/factor/build-support/factor.sh) ./factor -run=none -e='"x86.32" USE: bootstrap.image make-image save 0 USE: system exit' 1: "x86.32" USE: bootstrap.image make-image save 0 USE: system exit

Re: [Factor-talk] Loading vocabularies from the command line

2008-11-18 Thread Slava Pestov
Hi, the 'save' word is in the system vocabulary, so put USE: system first, before you call save. On Tue, Nov 18, 2008 at 2:24 PM, Kio M. Smallwood <[EMAIL PROTECTED]> wrote: > Hi, > > When I try to run some factor code on the command line like this: > (example taken from ~/factor/build-support/fa