ContRap
The symbolic tool for control-flow based rapid prototyping.

Library io
Overview

This library is undocumented

Non-class functions

Here you will find the list of all functions, which are defined outside the scope of a class.

cin():String
This method reads a string from the console
cout(string:String):void
This method writes an unformatted string to the console
directory(path:String):List
Returns the contents of a given directory
environment(name:String):String
Returns a value of an environment variable
print(object:):String
Base fancy printing function for ContRap internal data types
pwd():String
Returns the path where the application was started
system(command:String):int
Calls a shell command
write(string:String):void
Writes an unformatted string message to the output stream
xmlprint(object:):String
Abstract entrance to the string based XML-printer
xmlwrite(string:String):void
Writes a formatted string message to the output stream
Class FILE

Here you will find the class functions of 'FILE' defined in the library 'io'.

FILE(filename:String,mode:String):FILE
Opens a file for the given mode
close(file:FILE):void
Closes the file descriptor
read(file:FILE):String
Reads a string from a file
write(file:FILE,text:String):void
Writes a string to a file