Official "Hello, World! (I'm new!)" thread
Moderator: Talkative People
- Ginto8
- ES Beta Backer
- Posts: 1064
- Joined: Tue Jan 06, 2009 4:12 pm
- Programming Language of Choice: C/C++, Java
Re: Official "Hello, World! (I'm new!)" thread
Welcome! This is the perfect place to get that sort of info, though for some things you'll get RTFM's or GTFG's (just made this one up so that I can fit it with RTFM; it means Go To Fucking Google).
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
- JGorard159
- Chaos Rift Newbie
- Posts: 44
- Joined: Sun May 09, 2010 3:05 pm
- Current Project: Azareal Online: MMO
- Favorite Gaming Platforms: Virtual Boy. LOL WUT!?
- Programming Language of Choice: Javascript
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
System.out.println("Hello, I'm Jonathan, and I like Java!");
Savannah Cart of Ollege and Design
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com
- Ginto8
- ES Beta Backer
- Posts: 1064
- Joined: Tue Jan 06, 2009 4:12 pm
- Programming Language of Choice: C/C++, Java
Re: Official "Hello, World! (I'm new!)" thread
JGorard159 wrote:System.out.println("Hello, I'm Jonathan, and I like Java!");
Code: Select all
package main
import fmt
func main() {
fmt.Println("Hey there Jonathan, welcome to the forum! I must say that I prefer Go instead")
}
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
Re: Official "Hello, World! (I'm new!)" thread
I'm partial to Go, but I likes me some java :DJGorard159 wrote:System.out.println("Hello, I'm Jonathan, and I like Java!");
- 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
Ginto8 wrote:JGorard159 wrote:System.out.println("Hello, I'm Jonathan, and I like Java!");Code: Select all
package main import fmt func main() { fmt.Println("Hey there Jonathan, welcome to the forum! I must say that I prefer Go instead") }
Code: Select all
#include <iostream>
#include "stdio.h"
int main() {
std::cout << "Why hello thar, Jonathan and Ginto." << std::endl;
printf("You had better watch your asses, because we only tolerate C and/or C++ on these boards.\n");
printf("Any more of this Java/Go nonsense, and I'll have you both insta banned.\n");
return 0;
}
- aamesxdavid
- ES Beta Backer
- Posts: 347
- Joined: Wed Jan 07, 2009 8:49 pm
- Location: Bellevue, WA
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
GyroVorbis wrote:Code: Select all
#include <iostream> #include "stdio.h" int main() { std::cout << "Why hello thar, Jonathan and Ginto." << std::endl; printf("You had better watch your asses, because we only tolerate C and/or C++ on these boards.\n"); printf("Any more of this Java/Go nonsense, and I'll have you both insta banned.\n"); return 0; }
Code: Select all
using System;
public class CSharpFTW
{
public static void Main(string[] args)
{
Console.WriteLine("To hell with your global functions!");
}
}
Re: Official "Hello, World! (I'm new!)" thread
aamesxdavid wrote:GyroVorbis wrote:Code: Select all
#include <iostream> #include "stdio.h" int main() { std::cout << "Why hello thar, Jonathan and Ginto." << std::endl; printf("You had better watch your asses, because we only tolerate C and/or C++ on these boards.\n"); printf("Any more of this Java/Go nonsense, and I'll have you both insta banned.\n"); return 0; }
Code: Select all
using System; public class CSharpFTW { public static void Main(string[] args) { Console.WriteLine("To hell with your global functions!"); } }
Code: Select all
010010010010000001110011011000010111100100100000
011100110110001101110010011001010111011100100000
011000010110110001101100001000000110111101100110
001000000111100101101111011101010010110000100000
011000100110100101101110011000010111001001111001
001000000110100101110011001000000111010001101000
011001010010000001110111011000010111100100100000
011101000110111100100000011001110110111100100001
- xiphirx
- Chaos Rift Junior
- Posts: 324
- Joined: Mon Mar 22, 2010 3:15 pm
- Current Project: ******** (Unkown for the time being)
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Contact:
Re: Official "Hello, World! (I'm new!)" thread
XianForce wrote:aamesxdavid wrote:GyroVorbis wrote:Code: Select all
#include <iostream> #include "stdio.h" int main() { std::cout << "Why hello thar, Jonathan and Ginto." << std::endl; printf("You had better watch your asses, because we only tolerate C and/or C++ on these boards.\n"); printf("Any more of this Java/Go nonsense, and I'll have you both insta banned.\n"); return 0; }
Code: Select all
using System; public class CSharpFTW { public static void Main(string[] args) { Console.WriteLine("To hell with your global functions!"); } }
Code: Select all
010010010010000001110011011000010111100100100000 011100110110001101110010011001010111011100100000 011000010110110001101100001000000110111101100110 001000000111100101101111011101010010110000100000 011000100110100101101110011000010111001001111001 001000000110100101110011001000000111010001101000 011001010010000001110111011000010111100100100000 011101000110111100100000011001110110111100100001
Code: Select all
.Model small
.Stack 100h
.Data
message DB "ASM feels lonely",0AH,0DH,'$'
.Code
main Proc
mov ax,@data
mov ds,ax
mov ah,2h
mov ah,9h
lea dx,message
int 21h
mov ah,04Ch
int 21h
main ENDP
END
StarCraft II Zerg Strategy, open to all levels of players!
Looking for paid work :< Contact me if you are interested in creating a website, need a web design, or anything else you think I'm capable of
Looking for paid work :< Contact me if you are interested in creating a website, need a web design, or anything else you think I'm capable of
- 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
My personal favorite programming language.eatcomics wrote:Code: Select all
Hi
There's no place like ~/
Re: Official "Hello, World! (I'm new!)" thread
I prefer mandarin, but I haven't gotten the syntax down very well
- 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
XianForce wrote:Code: Select all
010010010010000001110011011000010111100100100000 011100110110001101110010011001010111011100100000 011000010110110001101100001000000110111101100110 001000000111100101101111011101010010110000100000 011000100110100101101110011000010111001001111001 001000000110100101110011001000000111010001101000 011001010010000001110111011000010111100100100000 011101000110111100100000011001110110111100100001
I prefer asm over binary.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- Ginto8
- ES Beta Backer
- Posts: 1064
- Joined: Tue Jan 06, 2009 4:12 pm
- Programming Language of Choice: C/C++, Java
Re: Official "Hello, World! (I'm new!)" thread
You may be interested to know that Go is very close to C in a lot of ways... it would appeal a lot more to you than javaGyroVorbis wrote:Ginto8 wrote:JGorard159 wrote:System.out.println("Hello, I'm Jonathan, and I like Java!");Code: Select all
package main import fmt func main() { fmt.Println("Hey there Jonathan, welcome to the forum! I must say that I prefer Go instead") }
Code: Select all
#include <iostream> #include "stdio.h" int main() { std::cout << "Why hello thar, Jonathan and Ginto." << std::endl; printf("You had better watch your asses, because we only tolerate C and/or C++ on these boards.\n"); printf("Any more of this Java/Go nonsense, and I'll have you both insta banned.\n"); return 0; }
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
-
- Chaos Rift Newbie
- Posts: 1
- Joined: Mon Jul 05, 2010 4:10 am
Re: Official "Hello, World! (I'm new!)" thread
Hello everyone', I'm new here. Am pretty good with C and C++, and am currently learning MASM in school(will be learning Java in September, don't hurt me :P). Anyway, right now I'm actually working on a Sonic the Hedgehog style physics engine in GML(Game Maker Language, using Game Maker obviously. It's scripting but close enough to C that I feel like I'm still practicing) which is going notably better than any of the shit I've seen on the internet outside of Sega's work itself(yet another Youtube video coming soon), and aside from that learning the SFML library to continue another person's Megaman 8 bit style game in C++(mainly went with this choice for portability). Yes, as you can tell I like old videogames. I haven't owned a console in about 10 years though. Anyway its hard to bother rl friends or find others who are interested in this stuff so hoping to have a good time working with you all
- 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
Welcome to the boards dudeStridentNinja wrote:Hello everyone', I'm new here. Am pretty good with C and C++, and am currently learning MASM in school(will be learning Java in September, don't hurt me :P). Anyway, right now I'm actually working on a Sonic the Hedgehog style physics engine in GML(Game Maker Language, using Game Maker obviously. It's scripting but close enough to C that I feel like I'm still practicing) which is going notably better than any of the shit I've seen on the internet outside of Sega's work itself(yet another Youtube video coming soon), and aside from that learning the SFML library to continue another person's Megaman 8 bit style game in C++(mainly went with this choice for portability). Yes, as you can tell I like old videogames. I haven't owned a console in about 10 years though. Anyway its hard to bother rl friends or find others who are interested in this stuff so hoping to have a good time working with you all
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