Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 245 Bytes

README.md

File metadata and controls

16 lines (8 loc) · 245 Bytes

Java

You can import Java classes and interact with Java objects.

import Random from 'java.util.Random';
r = Random(10);
r.nextInt() == -1157793070; // true

Please refer to the tests directory for more info.