JVM Languages
netrexx.txt
Associated article: Using NetRexx
Tags: JVM Languages .NET Tools
Published source code accompanying the article by Pamela J. Taylor in which she discusses NetRexx, a programming language designed to make programming the Java Virtual Machine easier than with Java. Although NetRexx syntax is derived from Rexx, NetRexx is strongly typed, making it first-rate for programming the JVM and allowing access primitive (binary) datatypes.
Using NetRexx
by Pamela J. Taylor
Example 1:
/* Handle an action (button press) */
method action(e=Event, o=Object) returns boolean
select
-- if Clear button, erase text fields
when e.target = bclear then do
name.setText('')
pw.setText('')
...


