Samuel Kim

11
reputation
3

Software Engineer

int years = 0;
while(1) {
    develop("Mobile Device Platform", "at Ubivelox");
    years++;
    if (years == 6) {
        break;
    }
}

years = 0;
while(1) {
    develop("Mobile Device Management Server for iOS devices", "at Samsung SDS");
    years++;
    if (years == 4) {
        continue;
    }
}