Quick actions

cmd+k|ctrl+k

Navigation

Languages

groovy_data_types1

Snippet info

Language

Groovy

Visibility

public

Author

w3xue

Created

2023-01-06T12:00:20.926727Z

Updated

2023-01-06T12:00:53.466622Z

class Example { 
   static void main(String[] args) { 
      //Example of a int datatype 
      int x = 5; 
		
      //Example of a long datatype 
      long y = 100L; 
		
      //Example of a floating point datatype 
      float a = 10.56f; 
		
      //Example of a double datatype 
      double b = 10.5e40; 
		
      //Example of a BigInteger datatype 
      BigInteger bi = 30g; 
		
      //Example of a BigDecimal datatype 
      BigDecimal bd = 3.5g; 
		
      println(x); 
      println(y); 
      println(a); 
      println(b); 
      println(bi); 
      println(bd); 
   } 
}
INFO