| 9 | import org.teavm.interop.Export; |
| 10 | |
| 11 | public final class Sys { |
| 12 | private Sys() {} |
| 13 | |
| 14 | @Import(name = "rand-u64", module = "sys") |
| 15 | private static native long wasmImportRandU64(); |
| 16 | |
| 17 | public static long randU64() { |
| 18 | long result = wasmImportRandU64(); |
| 19 | return result; |
| 20 | |
| 21 | } |
| 22 | |
| 23 | } |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected