Add EUC-JP test file

This commit is contained in:
Lassi Kortela 2019-05-12 17:24:27 +03:00
parent 0f7db91954
commit eeeea2c93e
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-euc-jp.scm")
(try-file "test-shift-jis.scm")
(try-file "test-utf16-be.scm")
(try-file "test-utf16-le.scm")

10
test-euc-jp.scm Normal file
View File

@ -0,0 +1,10 @@
#! /usr/bin/env gosh
(declare-file
(coding EUC-JP)
(language scheme r7rs)
(copyright 2019 "Lassi Kortela")
(spdx-license-identifier "ISC"))
(display "こんにちは世界")
(newline)