Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

-Ignore-

Status
Not open for further replies.
Joined
Aug 4, 2010
Messages
572
Reaction score
177
Here you will find the Table of Contents for our Great Programming Languages, it may be possible to use this for Gunz. I am not saying these codes are for Gunz but you can find a code so you can start learning then take the information and practice for a bit.

Since I've practiced over 24 different kinds, I just wanted everyone to have a taste of what each one really looks like. You will see how to write "Hello World" in over 24 different programming languages.


I'm also becomming Hireable for programming for Gunz Servers, I can make people Anti hacks and work with staff, Custom Commands and more.


Everything Below was hand written, I've been programming for years now.

Lets get started.

-----------------------
Ada:
Code:
with Text_IO;
procedure Test is

begin
  Text_IO.Put_Line("Hello World!");
end Test;

Assembler (gcc):
Code:
.text
   .global main

main:

  movl   $len, %edx
  movl  $msg, %ecx
  movl  $1, %ebx
  movl  $4, %eax
  int  $0x80


  movl  $0, %ebx
  movl  $1, %eax
  int  $0x80

.data

msg:
  .ascii    "Hello World!\n"
  len = . - msg

AWK (gawk):
Code:
BEGIN {
  print "Hello World!"
}

AWK (mawk):
Code:
BEGIN {
print "Hello World!"
}

Bash:
Code:
echo "Hello World!"

C:
Code:
#include <stdio.h>
int main(void) {
   printf("Hello World!\n");
  return 0;
}

C#:
Code:
using System;
public class Test
{
   public static void Main()
   {
       Console.WriteLine("Hello World!");
  }
}

C++:
Code:
#include <iostream>
using namespace std;
int main() {
   cout <<"Hello World" << endl;
   return 0;
}

C99 strict:
Code:
#include <stdio.h>
int main(void)  {
  printf("hello World!\n");
  return 0;
}

CLIPS:
Code:
(printout t "Hello World!" crlf)

(run)

(exit)

COBOL:
Code:
000100 IDENTIFICATION DIVISION.
000200 PROGRAM-ID. TEST-PROGRAM.
000300 PROCEDURE DIVISION.
000400    DISPLAY "Hello World!".
000500    STOP RUN.

COBOL85:
Code:
IDENTIFICATION DIVISION.
PROGRAM-ID.  TEST.
PROCEDURE VISION.
   DISPLAY "Hello World!"
   STOP RUN.

D (dmd):
Code:
import std.stdio;

int main() {
   printf("Hello World!\n");
   return 0;
}

Erlang:
Code:
-module(prog).
-export([main/0]).

main() ->

F#:
Code:
open System
System.Console.Write("Hello World!")
System.Console.WriteLine()

Factor:
Code:
USE: io
IN: hello-world

: hello ( -- ) "Hello World!" print ;
MAIN: hello

hello

Falcon:
Code:
printl("Hello World!")[/CODE

Go:
[CODE]package main

import "fmt"

func main() {
 fnt.Printf("Hello World!\n")
}

Haskell:
Code:
main = putStrLn "Hello World!"

Icon:
Code:
procedure main()
  write("Hello World!")
end

Java:
Code:
import java.util.*;
import java.lang.*;

class Main
{
  public static void main (String[]  args) throws java.lang.Exception
{
    System.out.println("Hello World!");
   }
}

Nemerle:
Code:
using System.Console;

module Test
{
  Main():void
  {
    WriteLine("Hello World!");
  }
}

Nice:
Code:
void main(String[] args)  {
   println("Hello World!");
}

Pascal (fpc):
Code:
program HelloWorld(output;
begin
 WriteLn('Hello World!');
end.

Pascal (gpc)
Code:
program HelloWorld(output);
begin
 WriteLn('Hello World!');
end.

PHP:
Code:
<?php
echo "Hello World!";
?>

Python:
Code:
print 'Hello World!'

Ruby:
Code:
puts "Hello World!"

Scala:
Code:
object Main {
   def main(args:  Array[String])  {
     println("Hello World!")
   }
}

Scheme (guile)
Code:
(display "Hello World!\n")

Visual Basic .NET:
Code:
Imports System

Public Class Test
   Public Shared Sub Main()
     System.Console.WriteLine("Hello World!")
   End Sub
End Class

----------------
This Index page may help you, if you just play around with it.

Subscribe to my Youtube Channel for tutorials:

*Copy Rights Wizcoder 2007 - 2010*
 
Elite Diviner
Joined
Aug 19, 2007
Messages
437
Reaction score
152
Re: Programming With Gunz (I'm now rehire-able)

Google: "<insert langauge name here> hello world."

This is pointless, and this is not the place to sell yourself.
 
Experienced Elementalist
Joined
Jan 6, 2009
Messages
261
Reaction score
88
Re: Programming With Gunz (I'm now rehire-able)

As far as I remember you couldn't program for poop, for anyone. Didn't you get your butt rejected from Dark before, for saying you bypassed their antihack. By randomly NOPing random poop?
 
Elite Diviner
Joined
Aug 19, 2007
Messages
437
Reaction score
152
Re: Programming With Gunz (I'm now rehire-able)

In fact, just by googling:
 
Junior Spellweaver
Joined
Oct 28, 2010
Messages
123
Reaction score
11
Re: Programming With Gunz (I'm now rehire-able)

Hey Wiz , i see your back :)
 
Status
Not open for further replies.
Back
Top