1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 01:54:21 +03:00
inform7/inform6/Tests/Test Cases/short_abbrevs_test.inf
2022-03-03 00:10:25 +00:00

30 lines
347 B
INI
Executable file

[ Main;
func();
];
! Len 1 -- warning
Abbreviate "x";
! Len 2 -- warning
Abbreviate "yz";
! Len 3
Abbreviate "abc";
! Len 4
Abbreviate "{";
! Len 2 -- warning
Abbreviate "5";
! Len 2 -- warning
Abbreviate "G";
! Len 3
Abbreviate "2f";
[ func;
print "The magic word is xyzzy. Not abc {or whatever}.^";
print "ABCDEFGHI 0123456789.^";
];