This file is indexed.

/usr/share/gnu-smalltalk/unsupported/Sorting.st is in gnu-smalltalk-common 3.2.4-2.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
| k a |
k := Symbol allInstances.
a := k collect: [ :each | each asString hash ].
^Smalltalk at: #test put: a!

ObjectMemory compact!

test asSortedCollection inject: '' into: [ :old :each |
	old > each ifTrue: [ old printNl. each printNl ]. each]!