Warning: session_start(): open(/var/lib/php/sessions/sess_e6lig4l2pjbgvc21bh13dphups, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!7
cmodule2 InputTreeTest > DynPrintLog {
concept Node {
new RefL followUps;
toString { ret getString comment(this); }
}
concept StringNode > Node {
S string;
*() {}
*(S *string) {}
toString { ret quote(string); }
}
transient Node root;
start-thread {
root = new Node;
cset(root, comment := "Root");
print(+root);
}
}