// dyslexic compilation
// © 2011 christian westman
func AerSame()
{
itn number = 0; // itn is a valid misspelling of int, so is tin or tni!
fro i:=0;i<number;i++ { // fro is a valid misspelling of for, I also accept rfo or orf!
if nubmer == i { // misspellings of variable names in same scope are shadowed and corrected at compile time
log.Pritnf("%s and %s are the saem!", i, nubmre) //variable names are corrected, strings are not
}
}
}