cfad47cfa3/t3compiler/tads3/test/data/fake_mbcs.t

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#charset "fake_mbcs_for_testing"
2
3
/*
4
 *   This is a test of using our fake testing multibyte character set.  The
5
 *   character set represents each upper-case letter as an at-sign ("@")
6
 *   followed by the corresponding lower-case letter: so 'A' is written as
7
 *   '@a', and so on.  This exercises the multi-byte mapper without using a
8
 *   true multi-byte character set, to make the test results easier to
9
 *   interpret, and to facilitate testing on systems that are localized to
10
 *   the US or Western Europe.  
11
 */
12
main(args)
13
{
14
    "@this @is @a @test @of @the @fake @multi-@byte @character @set.
15
    @each word in the preceding sentence should be capitalized, but
16
    only the first word of this sentence should be.\n";
17
}