Search results
Microsoft basic source code
Score: 164.55 %,
Type: Forum topic , Comments: 14 comments
While doing some studies with Basic, I found this site.
https://www.pagetable.com/?p=774
It seems to have the original MSX Basic source code, it has nice information about how it was written. It has even comments to what was done by Bill ...
Hanoi Tower in Basic
Score: 164.64 %,
Type: Forum topic , Comments: 4 comments
movetower(discs,'A','C','B');
return 0;
}
example
100 PRINT "HANOI example
100 PRINT "HANOI ...
return;
}
for(i=0; i<=count; i++) {
s[count] = 65 + i;
nest(count + 1, s);
}
}
int main(void)
{
char s[] = "123";
nest(0, s);
return 0;
}
- This is NG
100 S$="123"
120 ...
