varargs int true(mixed args...){
    if(args || !args) return 1;
}

varargs int false(mixed args...){
    if(args || !args) return 0;
}
