]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/scratch/org/simantics/databoard/tests/LongTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / scratch / org / simantics / databoard / tests / LongTest.java
1 package org.simantics.databoard.tests;
2
3 /**
4  *
5  * @author Toni Kalajainen <toni.kalajainen@iki.fi>
6  */
7 public class LongTest {
8
9         public static long mul(long a) {
10                 return a;
11         }
12         
13         public static void main(String[] args) {
14                 System.out.println( mul( 1000000000L*1000000000 ) );
15         }
16         
17         
18 }