15-12-2009, 16:31 | #11 | |
iCustom User Title
Join Date: Jul 2006
Posts: 2,250
|
Quote:
It's more futureproof though, 64-bit applications will slowly become standard so having a system capable of taking advantage of that is a benefit in itself.
__________________
|
|
15-12-2009, 16:45 | #12 |
Do you want to hide in my box?
Join Date: Jun 2006
Posts: 14,941
|
Cool Futureproof is good in my book
__________________
Halycopter |
15-12-2009, 17:05 | #13 |
Vodka Martini
Join Date: Sep 2008
Location: Beverley
Posts: 749
|
64 > 32
Got to be better |
15-12-2009, 17:11 | #14 |
The Stig
Join Date: Jun 2006
Location: Swad!
Posts: 10,713
|
Code:
daz$ python Python 2.6.4 (r264:75706, Nov 2 2009, 14:44:17) [GCC 4.4.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> assert(64 > 32) >>> assert(32 > 64) Traceback (most recent call last): File "<stdin>", line 1, in <module> AssertionError >>>
__________________
apt-get moo |
15-12-2009, 17:35 | #15 |
Preparing more tumbleweed
Join Date: Jun 2006
Location: Hawaii
Posts: 6,038
|
So tempting to try and go all programming golf on you..
Thought I'd get some verification of my own: Code:
#!/usr/bin/perl use strict; use warnings; if ( 64 > 32 ){ print "We're living in the future!\n"; }else{ print "Old School for life!\n"; } Code:
$ ./64bit.pl We're living in the future! Code:
$ if [ 64 > 32 ]; then echo "We're living in the future"; else echo "Old School for life"; fi We're living in the future
__________________
Mal: Define "interesting"? Wash: "Oh, God, oh, God, we're all gonna die"? Last edited by Garp; 15-12-2009 at 17:39. |
15-12-2009, 18:08 | #16 |
The Stig
Join Date: Jun 2006
Location: Swad!
Posts: 10,713
|
Succinct python!:
Code:
$python -c 'print 64 > 32' True Code:
$ruby -e 'print 64 > 32' true Code:
$ python -c "if not 64 > 32: print 'OMG\! WE DIES'" $ (bang escaped for bash, not for python ) We could try and be ridiculously verbose but I'm leaving work early to go see a comedian
__________________
apt-get moo |
15-12-2009, 19:30 | #17 |
Vodka Martini
Join Date: Feb 2009
Location: Exeter
Posts: 753
|
LOLcode!
Code:
HAI CAN HAS STDIO? I HAS A VAR VAR IZ 64 IZ VAR BIGGER THAN 32? YARLY BTW this is true VISIBLE "IZ BIGGER!" NOWAI BTW this is false VISIBLE "IZ NOT BIGGER!" KTHX KTHXBYE IZ BIGGER!
__________________
|
15-12-2009, 19:47 | #18 |
Moonshine
Join Date: Sep 2007
Location: Southampton
Posts: 3,201
|
ROFL
__________________
|
15-12-2009, 22:11 | #20 |
Screaming Orgasm
Join Date: Jul 2006
Location: Newbury
Posts: 15,194
|
Code:
php -r 'echo (64>32)?"To infinity, and beyond!":"LOLcode rulez!";' Last edited by Mark; 15-12-2009 at 22:16. |