The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package gma.gcalign;

public class value_table
  {

      /* Array of values */

	  int value;			/* value array */
	  int length;			/* length of table (number of values) */

	  //constructor
     public value_table()
           {
		 	  value = 0;
	          length = 0;
		  }

  }