1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 18:14:21 +03:00
inform7/services/kinds-module/Figures/conformance.txt

21 lines
766 B
Plaintext

'new kind thing of object': ok
'new kind device of thing': ok
'new kind vehicle of thing': ok
'new unit length': ok
'number <= number?': true
'number <= real number?': false
'value <= number?': false
'object <= text?': false
'object <= thing?': false
'thing <= object?': true
'device <= thing?': true
'device <= object?': true
'list of devices <= thing?': false
'list of devices <= list of things?': true
'relation of things to texts <= relation of devices to texts?': false
'relation of devices to texts <= relation of things to texts?': true
'phrase thing -> text <= phrase device -> text?': true
'phrase device -> text <= phrase thing -> text?': false
'phrase text -> thing <= phrase text -> device?': false
'phrase text -> device <= phrase text -> thing?': true