Netrexx is a computer language, based on Rexx, but which is translated to Java. It was developed by IBM to ease Java development; It can be used in place of java.

A short example:
/* A simple Netrexx applet */

correctanswer = 24
loop forever
	say 'how many hours are in a day?'
	answer = ask
	if answer = correctanswer
		then
			do
			say 'correct'
			leave
		end
	else say 'There are not 'answer' hours in a day. - try again.'
	end
exit 0