mirror of git://gcc.gnu.org/git/gcc.git
				
				
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			365 B
		
	
	
	
		
			Java
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			365 B
		
	
	
	
		
			Java
		
	
	
	
| public class longfield
 | |
| {
 | |
|   long lval = 232300;
 | |
|   boolean bval = true;
 | |
|   String sval = "maude";
 | |
| 
 | |
|   public native void doitc ();
 | |
| 
 | |
|   public void doitj()
 | |
|   {
 | |
|     System.out.println(lval);
 | |
|     System.out.println(bval);
 | |
|     System.out.println(sval);
 | |
|   }
 | |
| 
 | |
|   public static void main(String[] args)
 | |
|   {
 | |
|     longfield f = new longfield();
 | |
|     f.doitc();
 | |
|     f.doitj();
 | |
|   }
 | |
| }
 |