// Simple Rust fixture for DAP integration testing
fncalculate_sum(x:i32, y:i32)->i32{let result = x + y;let doubled = result *2;println!("Result: {}", doubled);
doubled
}fnmain(){let a =10;let b =20;let sum =calculate_sum(a, b);println!("Sum: {}", sum);}