prepend
Description:
Example: Prepend a string:
public static int main (string[] args) {
	// Output: ``hello, world!``
	StringBuilder builder = new StringBuilder ();
	builder.prepend ("world!\n");
	builder.prepend ("hello, ");
	print (builder.str);
	return 0;
}
    
    valac --pkg glib-2.0 GLib.StringBuilder.prepend.vala