FORMAT


Description:

[ CCode ( cname = "G_GINT32_FORMAT" ) ]
public const string FORMAT

Example: printf, int32:

public static int main (string[] args) {
// Output: ``10``
int32 val = 10;
print ("%" + int32.FORMAT + "\n", val);
return 0;
}

valac --pkg glib-2.0 int32.FORMAT.vala