Oleksandr Karpovich
2 months ago
committed by
GitHub
4 changed files with 33 additions and 0 deletions
@ -0,0 +1,4 @@
|
||||
fun main() { |
||||
runBenchmarks() |
||||
println("Completed!") |
||||
} |
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<title>Benchmarks Compose + K/Wasm</title> |
||||
<script src="compose-benchmarks.js"></script> |
||||
<script type="application/javascript"> |
||||
const log = console.log.bind(console) |
||||
console.log = (...args) => { |
||||
const message = args.join(' '); |
||||
const p = document.createElement('p'); |
||||
p.textContent = message; |
||||
document.body.appendChild(p); |
||||
log(...args); |
||||
} |
||||
</script> |
||||
</head> |
||||
<body> |
||||
Wait for the benchmarks to complete... |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue