wetelectric Posted October 8, 2006 Posted October 8, 2006 Hey season two episode three is here. If you have been a long time watcher but have not really participated in the hak.5 community, post here and say hello... :) People with 10 posts or less...post! This is your time! Evey realease day we need a thread like this. So come on! . Quote
Sparda Posted October 9, 2006 Posted October 9, 2006 Can I say hello as well? "Hello!" Apparently I can! :D Quote
wetelectric Posted October 9, 2006 Author Posted October 9, 2006 Can I say hello as well?"Hello!" Apparently I can! :D No! Mr 2000+posts this is not for u! ehehe Quote
Garda Posted October 9, 2006 Posted October 9, 2006 printf("Hello, World!"); not this again /* Copyright (C) 2006 Garda This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.*/ #include <iostream> using namespace std; class output1 {     public:     void message1(); }; void output1::message1 {     return "hello world!n"; } int main() {     output1.message1();     return 0; } Quote
Guest Posted October 9, 2006 Posted October 9, 2006 :/ shouldnt there be a print in there somewhere, the function just returns the string but you dont actually print it out. Quote
Jmtyra Posted October 9, 2006 Posted October 9, 2006 Watched quite a few episodes, but never registered on the forums. So...HI! =) Quote
PoyBoy Posted October 9, 2006 Posted October 9, 2006 /* Copyright (C) 2006 Garda This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.*/ #include <iostream> using namespace std; class output1 {     public:     void message1(); }; void output1::message1 {     return "hello world!n"; } int main() {     output1.message1();     return 0; } lots more stylish, if ridiculous for this task Quote
Garda Posted October 9, 2006 Posted October 9, 2006 I'm totally embarrassed. That hello world not only doesn't compile. It's extremely n00bish and full of mistakes. #include <iostream> using namespace std; class output1 { Â Â Â Â public: Â Â Â Â void message1(); }; void output1::message1() { Â Â Â Â cout << "hello world" << endl; } int main() { Â Â Â Â output1 class1; Â Â Â Â class1.message1(); Â Â Â Â return 0; } This code actually compiles Quote
Jigga-Zula Posted October 9, 2006 Posted October 9, 2006 Ok well I have more then 10 posts, but I have been here a while and don't really talk that often. So I'm still gonna say hi. Quote
wetelectric Posted October 9, 2006 Author Posted October 9, 2006 Falcon, addisonzinser, Loki, take it take, Jmtyra, Welcome, i hope you guys become regular contributers on the forums, irc, n00b servers etc... :D Quote
VaKo Posted October 9, 2006 Posted October 9, 2006 Just your friendly forum admin dropping in to say hello, welcome to all the new comers, I hope you'll enjoy the forums and help make them even better. Quote
take it take Posted October 9, 2006 Posted October 9, 2006 Falcon,addisonzinser, Loki, take it take, Jmtyra, Welcome, i hope you guys become regular contributers on the forums, irc, n00b servers etc... :D Thanks, I feel like this place is my home. I just need to adjust the font size everytime I go here, though. *squint* Quote
PoyBoy Posted October 9, 2006 Posted October 9, 2006 just your resident spammer dropping in to say hi Hi everyone! Quote
kholdstare32 Posted October 9, 2006 Posted October 9, 2006 48 65 6C 6C 6F 21 If the beast reads and writes Hexadecimal, then this would be his favorite color. Quote
Guest K1u Posted October 9, 2006 Posted October 9, 2006 public class Hello { Â Â Â Â public static void main (String[] args) Â Â Â Â { Â Â Â Â Â Â Â Â System.out.println ("Hello"); Â Â Â Â } } Quote
hexicon Posted October 9, 2006 Posted October 9, 2006 Usually just a lurker unless something really piques my interest. Enjoyed all the eps so far, and Nov 5 is sooo far away! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.