Hey Tetrinity...
Whenever I pasted code such as below into http://patorjk.com/keyboard-layout-analyzer/#/main, the results always come out as Programmer Dvorak and the Simplified Dvorak keyboard as the 2nd.. What made you switch to Colemak? I suppose that the keyboard layout doesn't really matter that much when it comes to programming, but reading how much typing you do in a day, I can't help wonder...
"#import <stdio.h>
#import "Fraction.h"
int main( int argc, const char *argv[] ) {
// create a new instance
Fraction *frac = [[Fraction alloc] init];
// set the values
[frac setNumerator: 1];
[frac setDenominator: 3];
// print it
printf( "The fraction is: " );
[frac print];
printf( "\n" );
// free memory
[frac release];
return 0;
}"