The lambda-rs crate provides a safe, cross-platform API for building applications on the Lambda platform.
bash
cargo add lambda-rs
Getting started with lambda is easy. The following example will create a window with the title "Hello lambda!" and a size of 800x600. ```rust
use lambda::{ core::runtime::start_runtime, runtimes::ApplicationRuntimeBuilder, };
fn main() { let runtime = ApplicationRuntimeBuilder::new("Hello lambda!") .withwindowconfiguredas(move |windowbuilder| { return windowbuilder .withdimensions(800, 600) .with_name("Hello lambda!"); }) .build();
start_runtime(runtime); } ```