MIN
Description:
Minimum value for a variable of type uint8.
Example: Get the minimum value which can be held in a uint8:
public static int main (string[] args) {
// Output: ``uint8.MIN = 0``
print ("uint8.MIN = %hhu\n", uint8.MIN);
return 0;
}
valac --pkg glib-2.0 uint8.MIN.vala