Add Big5 test file

This commit is contained in:
Lassi Kortela 2019-05-12 17:25:55 +03:00
parent eeeea2c93e
commit d5ea8c21ec
2 changed files with 11 additions and 0 deletions

View File

@ -117,6 +117,7 @@
(for-each writeln (read-declarations-from-file filename))
(newline))
(try-file "test-big5.scm")
(try-file "test-euc-jp.scm")
(try-file "test-shift-jis.scm")
(try-file "test-utf16-be.scm")

10
test-big5.scm Normal file
View File

@ -0,0 +1,10 @@
#! /usr/bin/env gosh
(declare-file
(coding Big5)
(language scheme r7rs)
(copyright 2019 "Lassi Kortela")
(spdx-license-identifier "ISC"))
(display "你好世界")
(newline)