Skip to main content
Module

x/silicon/testdata/main.rs

Deno module to generate images from source code using Aloxaf/silicon.
Go to Latest
File
use std::fs::File;use std::io::prelude::*;
fn main() -> std::io::Result<()> { let mut file = File::create("foo.txt")?; file.write_all(b"Hello, world!")?; Ok(())}