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:
Assembler (gcc):Code:with Text_IO; procedure Test is begin Text_IO.Put_Line("Hello World!"); end Test;
AWK (gawk):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 (mawk):Code:BEGIN { print "Hello World!" }
Bash:Code:BEGIN { print "Hello World!" }
C: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!"); } }
C99 strict:Code:#include <iostream> using namespace std; int main() { cout <<"Hello World" << endl; return 0; }
CLIPS:Code:#include <stdio.h> int main(void) { printf("hello World!\n"); return 0; }
COBOL:Code:(printout t "Hello World!" crlf) (run) (exit)
COBOL85:Code:000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. TEST-PROGRAM. 000300 PROCEDURE DIVISION. 000400 DISPLAY "Hello World!". 000500 STOP RUN.
D (dmd):Code:IDENTIFICATION DIVISION. PROGRAM-ID. TEST. PROCEDURE VISION. DISPLAY "Hello World!" STOP RUN.
Erlang:Code:import std.stdio; int main() { printf("Hello World!\n"); return 0; }
F#:Code:-module(prog). -export([main/0]). main() ->
Factor:Code:open System System.Console.Write("Hello World!") System.Console.WriteLine()
Falcon:Code:USE: io IN: hello-world : hello ( -- ) "Hello World!" print ; MAIN: hello hello
[CODE]printl("Hello World!")[/CODE
Go:
Haskell:Code:package main import "fmt" func main() { fnt.Printf("Hello World!\n") }
Icon:Code:main = putStrLn "Hello World!"
Java:Code:procedure main() write("Hello World!") end
Nemerle:Code:import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println("Hello World!"); } }
Nice:Code:using System.Console; module Test { Main():void { WriteLine("Hello World!"); } }
Pascal (fpc):Code:void main(String[] args) { println("Hello World!"); }
Pascal (gpc)Code:program HelloWorld(output; begin WriteLn('Hello World!'); end.
PHP:Code:program HelloWorld(output); begin WriteLn('Hello World!'); end.
Python:Code:<?php echo "Hello World!"; ?>
Ruby:Code:print 'Hello World!'
Scala:Code:puts "Hello World!"
Scheme (guile)Code:object Main { def main(args: Array[String]) { println("Hello World!") } }
Visual Basic .NET:Code:(display "Hello World!\n")
----------------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: YouTube - PCGamesification's Channel
*Copy Rights Wizcoder 2007 - 2010*





