Fix using list for keys/values change
parent
5a08add73a
commit
39013d1373
|
@ -1,6 +1,6 @@
|
||||||
USING: kernel fry sequences vocabs.loader help.vocabs ui
|
USING: kernel fry sequences vocabs.loader help.vocabs ui
|
||||||
ui.gadgets ui.gadgets.buttons ui.gadgets.packs ui.gadgets.borders
|
ui.gadgets ui.gadgets.buttons ui.gadgets.packs ui.gadgets.borders
|
||||||
ui.gadgets.scrollers ui.tools.listener accessors ;
|
ui.gadgets.scrollers ui.tools.listener accessors assocs ;
|
||||||
IN: demos
|
IN: demos
|
||||||
|
|
||||||
: demo-vocabs ( -- seq ) "demos" tagged values concat [ name>> ] map ;
|
: demo-vocabs ( -- seq ) "demos" tagged values concat [ name>> ] map ;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors alien alien.c-types alien.strings alien.syntax arrays
|
USING: accessors alien alien.c-types alien.strings alien.syntax arrays
|
||||||
classes.struct fry io.encodings.ascii io.mmap kernel locals math
|
classes.struct fry io.encodings.ascii io.mmap kernel locals math
|
||||||
math.intervals sequences specialized-arrays strings typed ;
|
math.intervals sequences specialized-arrays strings typed assocs ;
|
||||||
IN: elf
|
IN: elf
|
||||||
|
|
||||||
! FFI data
|
! FFI data
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
! (c)2009 Joe Groff bsd license
|
! (c)2009 Joe Groff bsd license
|
||||||
USING: accessors alarms calendar continuations destructors fry
|
USING: accessors alarms calendar continuations destructors fry
|
||||||
kernel math math.order namespaces system ui ui.gadgets.worlds
|
kernel math math.order namespaces system ui ui.gadgets.worlds ;
|
||||||
vocabs.loader ;
|
|
||||||
IN: game.loop
|
IN: game.loop
|
||||||
|
|
||||||
TUPLE: game-loop
|
TUPLE: game-loop
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
! The contents of this file are licensed under the Simplified BSD License
|
! The contents of this file are licensed under the Simplified BSD License
|
||||||
! A copy of the license is available at http://factorcode.org/license.txt
|
! A copy of the license is available at http://factorcode.org/license.txt
|
||||||
USING: grouping kernel math math.ranges project-euler.common
|
USING: grouping kernel math math.ranges project-euler.common
|
||||||
sequences sequences.cords ;
|
sequences sequences.cords assocs ;
|
||||||
IN: project-euler.206
|
IN: project-euler.206
|
||||||
|
|
||||||
! http://projecteuler.net/index.php?section=problems&id=206
|
! http://projecteuler.net/index.php?section=problems&id=206
|
||||||
|
|
Loading…
Reference in New Issue