-Ignore-

Results 1 to 6 of 6
  1. #1
    C:\ WizCoder is offline
    MemberRank
    Aug 2010 Join Date
    JapanLocation
    703Posts

    happy -Ignore-

    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: YouTube - PCGamesification's Channel

    *Copy Rights Wizcoder 2007 - 2010*


  2. #2
    Aristrum Mark is offline
    MemberRank
    Aug 2007 Join Date
    United KingdomLocation
    474Posts

    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.

  3. #3
    Account Upgraded | Title Enabled! Torsen is offline
    MemberRank
    Jan 2009 Join Date
    294Posts

    Re: Programming With Gunz (I'm now rehire-able)

    As far as I remember you couldn't program for shit, for anyone. Didn't you get your ass rejected from Dark before, for saying you bypassed their antihack. By randomly NOPing random shit?

  4. #4
    Aristrum Mark is offline
    MemberRank
    Aug 2007 Join Date
    United KingdomLocation
    474Posts

    Re: Programming With Gunz (I'm now rehire-able)

    In fact, just by googling: Category:Hello World - LiteratePrograms

  5. #5
    Valued Member Millitary8 is offline
    MemberRank
    Oct 2010 Join Date
    C++Location
    141Posts

    Re: Programming With Gunz (I'm now rehire-able)

    Hey Wiz , i see your back :)

  6. #6
    ...[ White Rabbit ]... MentaL is offline
      Administrator  Rank
    Jan 2001 Join Date
    31,635Posts

    Re: Programming With Gunz (I'm now rehire-able)

    i can clap without my hands... hire me!



Advertisement