
-----------------------------------
the_short1
Wed Apr 07, 2004 8:02 pm

hey all.... can someone help me find this programm....
-----------------------------------
hey... my friend travis is too lazy oto acually register so i made this topic for him.... (also i am currious)


is there a plaace that i can 'buy' me a free copy of C++ with compiler???


thanks...

-----------------------------------
Catalyst
Wed Apr 07, 2004 8:16 pm


-----------------------------------
http://www.bloodshed.net

no need to "buy" it 
its free

-----------------------------------
Raugrist
Wed Apr 07, 2004 8:52 pm


-----------------------------------
Yes, and technically you don't "buy" C++... you don't even buy ( irb
irb(main):001:0> my_var = 10
=> 10
irb(main):002:0> if my_var > 5
irb(main):003:1>    puts "foo!"
irb(main):004:1> end
foo!
=> nil
irb(main):005:0> if my_var < 5
irb(main):006:1>    puts "foo!"
irb(main):007:1> else
irb(main):008:1*    puts "bar..."
irb(main):009:1> end
bar...
=> nil
irb(main):010:0> for x in [1,2,3]
irb(main):011:1>    puts x
irb(main):012:1> end
1
2
3
=> [1, 2, 3]
irb(main):013:0> exit
C:\>
C:\> python
Python 2.3.3 (#51, Dec 18 2003, 20:22:39) [MSC v.1200 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> my_var = 10
>>> if my_var > 5:
...    print "foo!"
...
foo!
>>> if my_var < 5:
...    print "foo!"
... else:
...    print "bar..."
...
bar...
>>> for x in [1,2,3]:
...    print x
...
1
2
3
>>> from sys import exit
>>> exit()
C:\>

-----------------------------------
the_short1
Thu Apr 08, 2004 9:26 pm


-----------------------------------
.. .ahhh..  i am going to be doibng a lot of stuff during summer... i just wanted to do those too...

thinking on making a BMX track.. cuz their is none in town...

anyways.... topic closed... thanks everyone...
