Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SGN bug
#1
Was the SGN bug not fixed, or is there something else wrong with my code?
f you play a Microsoft CD backwards you can hear demonic voices. The scary part is that if you play it forwards it installs Windows.
Reply
#2
If it has been fixed (I don't know if it has) let's see your code.
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#3
http://forum.qbasicnews.com/viewtopic.php?t=8507
f you play a Microsoft CD backwards you can hear demonic voices. The scary part is that if you play it forwards it installs Windows.
Reply
#4
Course it was..

Code:
    dim i as integer
    dim s as short
    dim b as byte
    dim f as single
    dim d as double
    
    d = -123456.7
    f = -12345.6
    i = -12345
    s = -1234
    b = -123
    
    print sgn(i), sgn(s), sgn(b), sgn(f), sgn(d)
    
    d = 123456.7
    f = 12345.6
    i = 12345
    s = 1234
    b = 123
    
    print sgn(i), sgn(s), sgn(b), sgn(f), sgn(d)
    
    
    print sgn(-12345), sgn(-1234), sgn(-123), sgn(-12345.6), sgn(-123456.7)
    
    print sgn(12345), sgn(1234), sgn(123), sgn(12345.6), sgn(123456.7)[/code]
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)