Differences between revisions 21 and 23 (spanning 2 versions)
Revision 21 as of 2008-11-15 09:16:00
Size: 164
Editor: localhost
Comment: converted to 1.6 markup
Revision 23 as of 2009-08-23 19:30:00
Size: 251
Editor: AlfonsoReyes
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
||'''Java'''||'''Jython'''|| ||'''Description''' ||'''In Java'''||'''In Jython'''||
Line 5: Line 5:
||Size of array || mx = data.length; || mx = len(data) ||

Describe ComparisonJavaJython here.

Description

In Java

In Jython

xCoord = Double[25]

xCoord = jarray.zeros(25, "d")

Size of array

mx = data.length;

mx = len(data)

ComparisonJavaJython (last edited 2009-08-23 20:01:21 by AlfonsoReyes)