Official "Hello, World! (I'm new!)" thread
Moderator: Talkative People
- SerenityDivide
- Chaos Rift Newbie
- Posts: 4
- Joined: Sat May 07, 2011 11:41 am
- Current Project: Learning Basic C++ through Mike Dawson's primer
- Favorite Gaming Platforms: NES, SNES, Playstation 1 & 2, PC
- Programming Language of Choice: C++
- Location: Las Vegas, Nevada
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
Wow, nice meeting everyone. :D I'm really impressed / inspired after reading the posts of many talented programmers here!
I'm brand new to coding in C++ and am glad to have found this community!
I'm sure I'll have a ton of questions when I start getting into the more technical stuff.
I never knew how someone like me could unknowingly turn a simple Hello World program into a Self-Actualizing A.I. that was bent on beeping at me until I shut it down.... sheesh! Computer's these days... :P
I'm brand new to coding in C++ and am glad to have found this community!
I'm sure I'll have a ton of questions when I start getting into the more technical stuff.
I never knew how someone like me could unknowingly turn a simple Hello World program into a Self-Actualizing A.I. that was bent on beeping at me until I shut it down.... sheesh! Computer's these days... :P
-
- Chaos Rift Newbie
- Posts: 42
- Joined: Thu May 12, 2011 2:45 pm
Re: Official "Hello, World! (I'm new!)" thread
Code: Select all
using System;
namespace helloworld
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!\n");
Console.WriteLine("Just thought I would say hi!\n");
Console.ReadKey(true);
}
}
}
Last edited by janequorzar on Sat Jun 02, 2012 7:56 am, edited 1 time in total.
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
Welcome SerenityDivide.
Code: Select all
#include <iostream>
int main(int argc, char* argv[])
{
std::cout << "Welcome janequorzar." << std::endl;
std::cin.get();
return 0;
}
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- MrDeathNote
- ES Beta Backer
- Posts: 594
- Joined: Sun Oct 11, 2009 9:57 am
- Current Project: cocos2d-x project
- Favorite Gaming Platforms: SNES, Sega Megadrive, XBox 360
- Programming Language of Choice: C/++
- Location: Belfast, Ireland
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
We have a new red mage !!janequorzar wrote:Code: Select all
using System; namespace helloworld { class Program { public static void Main(string[] args) { Console.WriteLine("Hello World!\n"); Console.WriteLine("Just thought I would say hi!\n"); Console.WriteLine("I'm a C# programer and OS Developer as well as a Musician and 3D modeler.\n"); Console.Write("I figure I would come say hi to the guys who are making a 3D game engine. Cheers from Orlando Florida."); Console.ReadKey(true); } } }
http://www.youtube.com/user/MrDeathNote1988
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
-
- Chaos Rift Newbie
- Posts: 42
- Joined: Thu May 12, 2011 2:45 pm
Re: Official "Hello, World! (I'm new!)" thread
dandymcgee wrote:Welcome SerenityDivide.
Code: Select all
#include <iostream> int main(int argc, char* argv[]) { std::cout << "Welcome janequorzar." << std::endl; std::cin.get(); return 0; }
Code: Select all
#include <stdio.h>
main()
{
printf("Hello back in ANSI C,\n");
printf("Thanks for the quick response in CPP.\n");
printf("I am a ANSI C programmer from back in the DOS days.\n");
printf("I also went from learning CPP to now programing wonders in C#. lol\n");
return 0;
}
- MrDeathNote
- ES Beta Backer
- Posts: 594
- Joined: Sun Oct 11, 2009 9:57 am
- Current Project: cocos2d-x project
- Favorite Gaming Platforms: SNES, Sega Megadrive, XBox 360
- Programming Language of Choice: C/++
- Location: Belfast, Ireland
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
From the Final fantasy wiki:janequorzar wrote: @ MrDeathNote Hey forgive my ignorance here, but what did you mean, "We have a new red mage" ? I am an old WOTC DnD fan and I used to play a Mage. But somehow I don't think that's what you meant.. lol
programmer + musician + modeler = red mageRed Mages typically cast both Black and White Magic and can also wield swords and equip armor that normal Black and White Mages cannot. They are, in essence, among the more versatile characters of the series.
http://www.youtube.com/user/MrDeathNote1988
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
-
- Chaos Rift Newbie
- Posts: 42
- Joined: Thu May 12, 2011 2:45 pm
Re: Official "Hello, World! (I'm new!)" thread
Oh man.. I should have figured that one out.. too obvious.. lol
- LeonBlade
- Chaos Rift Demigod
- Posts: 1314
- Joined: Thu Jan 22, 2009 12:22 am
- Current Project: Trying to make my first engine in C++ using OGL
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: Blossvale, NY
Re: Official "Hello, World! (I'm new!)" thread
You develop OS?janequorzar wrote:Console.WriteLine("I'm a C# programer and OS Developer as well as a Musician and 3D modeler.\n");
There's no place like ~/
-
- Chaos Rift Newbie
- Posts: 42
- Joined: Thu May 12, 2011 2:45 pm
Re: Official "Hello, World! (I'm new!)" thread
Yes, back in the day I made one. Now days I still mess with it. But not as much as I used too.
Last edited by janequorzar on Sat Jun 02, 2012 7:58 am, edited 1 time in total.
- LeonBlade
- Chaos Rift Demigod
- Posts: 1314
- Joined: Thu Jan 22, 2009 12:22 am
- Current Project: Trying to make my first engine in C++ using OGL
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: Blossvale, NY
Re: Official "Hello, World! (I'm new!)" thread
Wow man, that sounds awesome, welcome to the forums! Please don't be afraid to let us know about your future projects.janequorzar wrote:LeonBlade wrote:You develop OS?janequorzar wrote:Console.WriteLine("I'm a C# programer and OS Developer as well as a Musician and 3D modeler.\n");
Yes, back in 2000 I made the first LCARS Operating System. You can look my name up. I'm on Wiki. I used to give the Auctions for Paramount Pictures ( Star Trek ).
It was only a 16-Bit OS, but it worked. During that time period I was also working with a friend and we made the LCARS Operating System Shell for Windows as well ( LOSS ).
Now days I been doing other things, but I have been designing another OS Lately. Who knows when I'll get around to actually writing it.
There's no place like ~/
-
- Chaos Rift Newbie
- Posts: 42
- Joined: Thu May 12, 2011 2:45 pm
Re: Official "Hello, World! (I'm new!)" thread
hey thanks..
- TheIrishPhilosopher
- Chaos Rift Newbie
- Posts: 20
- Joined: Wed Aug 10, 2011 11:18 am
- Current Project: ASP.NET (work related)
- Favorite Gaming Platforms: Amstrad 464+, Gameboy, PS3, PC
- Programming Language of Choice: c#
- Location: Belfast
Re: Official "Hello, World! (I'm new!)" thread
Hi Folks
Ive been interested in Game developement for a while, dipping my toes into the deep (but refreshing) waters of c++ and XNA at times. I've lacked the commitment to pick a project and see my way through it. I found my way through the Adventures in Game Programming series (which I discovered on Sunday!), it's great to view Falco's passion for Game development and it's community. Ive also viewed the fantastic Moosader's videos on youtube and enjoyed her website as well.
So I decided to renew my commitment to the science and joy of Game development, and joined here. I hope to learn from you all, share some laughs and maybe..finally produce something.
Ive been interested in Game developement for a while, dipping my toes into the deep (but refreshing) waters of c++ and XNA at times. I've lacked the commitment to pick a project and see my way through it. I found my way through the Adventures in Game Programming series (which I discovered on Sunday!), it's great to view Falco's passion for Game development and it's community. Ive also viewed the fantastic Moosader's videos on youtube and enjoyed her website as well.
So I decided to renew my commitment to the science and joy of Game development, and joined here. I hope to learn from you all, share some laughs and maybe..finally produce something.
Life is essentially about exploring, finding our way through a maze of faces, ideas..and different beers!
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
You've come to the right place. Welcome to the promised land, brother.
- TheIrishPhilosopher
- Chaos Rift Newbie
- Posts: 20
- Joined: Wed Aug 10, 2011 11:18 am
- Current Project: ASP.NET (work related)
- Favorite Gaming Platforms: Amstrad 464+, Gameboy, PS3, PC
- Programming Language of Choice: c#
- Location: Belfast
Re: Official "Hello, World! (I'm new!)" thread
Thanks Falco,
Ive started going through the basics of C++ again, getting to grips with the fundamentals, forgetting about Game development 'per say' and trying to get my head around Memory management, pointers etc, all the good stuff that newbie c# programmers like me shudder at. I saw your video series and recognised that its the inital hard work at understanding all of this (and more) that makes a difference at the later stages.
It the encouragement of seasoned developers that can make the difference for the newbie, thats why I appreciate the worth of this forum and its participants
So if anyone is reading this, lurking on the forum (like I did for the last day) and wonders if they have got what it takes to make their own game, learn a programming language and maybe have fun doing it... come on in, join in, read posts and learn, contribute and grow.
Ive started going through the basics of C++ again, getting to grips with the fundamentals, forgetting about Game development 'per say' and trying to get my head around Memory management, pointers etc, all the good stuff that newbie c# programmers like me shudder at. I saw your video series and recognised that its the inital hard work at understanding all of this (and more) that makes a difference at the later stages.
It the encouragement of seasoned developers that can make the difference for the newbie, thats why I appreciate the worth of this forum and its participants
So if anyone is reading this, lurking on the forum (like I did for the last day) and wonders if they have got what it takes to make their own game, learn a programming language and maybe have fun doing it... come on in, join in, read posts and learn, contribute and grow.
Life is essentially about exploring, finding our way through a maze of faces, ideas..and different beers!
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
Listen to the man, it's good advice. Welcome to the forums!TheIrishPhilosopher wrote: So if anyone is reading this, lurking on the forum (like I did for the last day) and wonders if they have got what it takes to make their own game, learn a programming language and maybe have fun doing it... come on in, join in, read posts and learn, contribute and grow.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!