Mark Damon Hughes What is NetRexx? [Parental Advisory: Explicit Lyrics] [about]

Index  |   What is NetRexx?  |   NetRexx Servlets  |  

NetRexx is Mike Cowlishaw's alternate language for the Java Virtual Machine, based on his human-readable programming language REXX.

Here's a minimal NetRexx program:

/* date.nrx */
say Date()

Compiling and running date.nrx:

% nrc -run date
NetRexx portable processor, version 2.05
Copyright (c) IBM Corporation, 2005.  All rights reserved.
Program hello.nrx
Compilation of 'hello.nrx' successful
Running hello...
Fri Jan 13 12:06:39 PST 2006

Here's the equivalent Java program:

/* date.java */
import java.util.Date;
public class date {
    public static void main(String[] args) {
        System.out.println( new Date() );
    }
}

Compiling and running date.java:

% javac date.java
% java date
Fri Jan 13 12:07:33 PST 2006

I use NetRexx pretty routinely. If a task needs a Java library, but I don't feel like writing some giant Java app for one-shot problem-solving, NetRexx comes to my rescue.

Last modified: 2006Jan13
Created

Links:


+-Mark Damon Hughes: Software Gallery
+-Mark Damon Hughes: Software Gallery Blog
+-@mdhughes on Twitter
+-
iPhone Games:

+-Perilar: Role-playing game for the iPhone.
+-Castles: Strategy wargame for the iPhone.
+-DungeonDice: Tabletop RPG dice roller for the iPhone.
+-Nexus Worlds: Multiplayer Online Adventure Game for the iPhone.
+-
Computer Games:

+-Java Perilar: Adventures in the Dragon Kingdoms.
+-Hephaestus: Computer RPG construction kit.
+-GameScroll: Simple interactive fiction authoring.
+-Aiee!: "An Interactive Environment Engine" text adventure system.
+-Umbra: Post-apocalpytic computer RPG.
+-
Utilities:

+-JICB: Portable ICB client written in Java.
+-ThoughtPad: A tiny note-taking utility.

Site Pages:


+-Audio
+-Blank page
+-Camera
+-Cyberpunk
+-Game Design
+-Hacker
    +-Java
    +-NetRexx
    +-Python
+-Hello Kitty
+-Quotes
+-Religion
+-RPG
    +-The Bomb
    +-DUDE
    +-G.P.A.
    +-Phobos
    +-SIX WORD RPG!
    +-Weapons
    +-What's Wrong
  With AD&D?

+-Text
    +-H.Beam Piper
    +-Snow Crash
+-Universal Search
+-Video
+-Videogames
+-Virus Warning

Blog Archive
Blog Topics:


+-News
+-Cocoa
+-Mac
+-Media
+-Personal
+-Quotes
+-Religion
+-Roleplaying
+-Science
+-SecondLife
+-Society
+-Software
+-Toys
+-Web

Feedback  | Key: ] =local file, * =off-site link  | Copyright © 2003-2005 by Mark Damon Hughes | Subscribe with RSS 2.0
This site was created with Vim :wq