![]() |
|
Navigation |
Synopsis Print an indented representation of a value and returns the value as result.
Function
&T iprintExp(&T v)
Usage
import IO;
Description See iprintlnExp for a version that adds a newline.
Examples
rascal>import IO; ok rascal>iprintExp(["fruits", ("spider" : 8, "snake" : 0), [10, 20, 30]]); [ "fruits", ("snake":0,"spider":8), [10,20,30] ]list[value]: [ "fruits", ("snake":0,"spider":8), [10,20,30] ] ![]() |