I need an OS that goes to 11 to go with my amp.Why does it matter who calls what first (if at all)?
I need an OS that goes to 11 to go with my amp.

Mac OS has been on version 10 almost as long as versions 1-9. It's a brand name, not just a version number.
Microsoft skipped 9 to copy them.![]()
f (name.startsWith("windows")) {
name = "windows";
if (name.startsWith("windows 9")) {
if (version.startsWith("4.0")) {
version = "95";
} else if (version.startsWith("4.9")) {
version = "me";
} else {
assert version.startsWith("4.1");
version = "98";
}
}
Microsoft skipped 9 because of people writing terrible code that basically did a check of "if 9 is in version number, then it's Windows 95-98/SE" - iirc, it was mostly terrible Java code at that.
Code:f (name.startsWith("windows")) { name = "windows"; if (name.startsWith("windows 9")) { if (version.startsWith("4.0")) { version = "95"; } else if (version.startsWith("4.9")) { version = "me"; } else { assert version.startsWith("4.1"); version = "98"; } }
If that were the case, they'd call it 9 and use 10 internally like all the other versions. I think 10 is a better fresh start.
