abrowser/src/main.rs

14 lines
261 B
Rust

//! A modern compliant Rust implementation of the HTML5/CSS3/JS specs bundled into a web browser.
#![deny(missing_docs)]
pub mod css;
pub mod html;
// pub mod js;
fn main() {
let html = include_str!("../tests/minimal.html");
println!("{}", html);
}