Version 0.0.4
var pc = forte.PitchClass.withInt(7);
pc.toString();
//returns '7';
pc.toString('latin');
//returns 'Sol'
pc.toString('american');
//returns 'g'
pc.getIntValue();
//returns 7
var pcs = forte.PitchClassSet.withArray([0,4,7,8]);
pcs.getPrimeForm().toString();
//returns '(0,1,4,8)'
pcs.getPrimeInversion().toString();
//returns '[0,3,4,8]'
pcs.getIv().toString();
//returns '<101310>'