Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
DataStream example in Cuis
Last updated at 10:17 am UTC on 4 April 2019
Data objects written in Squeak may be read in Cuis.

Condition: The classes used need to be available both systems.

|result |
	
	'theDataStreamTest.obj' asFileEntry readStreamDo: [ :file |
		file binary.
		result _ (DataStream on: file) next ].
	result inspect