Benchmarks: - Add fib, list_ops, primes benchmarks comparing Lux vs Node.js vs Rust - Lux matches Rust performance and is 8-30x faster than Node.js - Add docs/benchmarks.md documenting results LSP improvements: - Context-aware completions (module access vs general) - Add List, String, Option, Result, Console, Math method completions - Add type and builtin completions - Hover now shows type signatures and documentation for known symbols - Hover returns formatted markdown with code blocks Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
457 B
Plaintext
17 lines
457 B
Plaintext
// List operations benchmark
|
|
fn main(): Unit = {
|
|
// Create a list of 10000 numbers
|
|
let nums = List.range(1, 10001)
|
|
|
|
// Map: double each number
|
|
let doubled = List.map(nums, fn(x: Int): Int => x * 2)
|
|
|
|
// Filter: keep even numbers
|
|
let evens = List.filter(doubled, fn(x: Int): Bool => x % 4 == 0)
|
|
|
|
// Fold: sum all
|
|
let sum = List.fold(evens, 0, fn(acc: Int, x: Int): Int => acc + x)
|
|
|
|
Console.print("Sum: " + toString(sum))
|
|
}
|