2008-10-05 19:36:56 -04:00
|
|
|
! Copyright (C) 2008 Daniel Ehrenberg.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2014-05-19 17:29:16 -04:00
|
|
|
USING: interval-maps namespaces parser simple-flat-file
|
|
|
|
words.constant ;
|
2008-05-05 00:33:54 -04:00
|
|
|
IN: unicode.script
|
|
|
|
|
2009-03-17 20:39:04 -04:00
|
|
|
<PRIVATE
|
|
|
|
|
2014-05-19 17:29:16 -04:00
|
|
|
<<
|
2015-06-08 15:38:38 -04:00
|
|
|
"script-table" create-word-in
|
2009-03-20 20:53:54 -04:00
|
|
|
"vocab:unicode/script/Scripts.txt" load-interval-file
|
2014-05-19 17:29:16 -04:00
|
|
|
define-constant
|
|
|
|
>>
|
2008-05-06 00:47:22 -04:00
|
|
|
|
2009-03-17 20:39:04 -04:00
|
|
|
PRIVATE>
|
|
|
|
|
2008-05-05 00:33:54 -04:00
|
|
|
: script-of ( char -- script )
|
2014-05-19 17:29:16 -04:00
|
|
|
script-table interval-at ;
|