View Single Post
  #13   Spotlight this post!  
Unread 29-05-2004, 06:40
Ryan M. Ryan M. is offline
Programming User
FRC #1317 (Digital Fusion)
Team Role: Programmer
 
Join Date: Jan 2004
Rookie Year: 2004
Location: Ohio
Posts: 1,508
Ryan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud of
Re: Found Really Cool Windows text Editor

Quote:
Originally Posted by phrontist
Notepad..., Ultraedit, and the above editor rule...Windows is a mighty force of evil.
Aren't those Windows editors?

Quote:
Originally Posted by phrontist
BASIC, Python, Lisp, and Ruby are not real programming languages. C is a real programmer's language. No, I don't need classes.
Have to agree on the BASIC thing. But, come to the future. My objects wish to eat you.
Code:
#include <violence>

class enemy
{
    pulbic:
        enum speed { slow, fast, spontaneous };
        void getEaten(speed howFast); // Note that this class doesn't throw any exceptions; there is no chance of failing
}

int main(int argc, char **agrv)
{
    enemy phrontist = new enemy;
    phrontist.getEaten(slow);
    return 0; // we, of course, succeeded
}
Texan compiles and runs it. If you ever die, you'll know that my class succeeded in getting you.

All in good fun.
__________________