bibliofile/src/html_module.rs

17 lines
369 B
Rust
Raw Normal View History

/*
Program: Bibliofile
Language: Rustc 1.69.0
ide: CLion
Operating system: Fedora 38/WSL
Purpose: This class is meant to process and return HTML formatted text as strings.
Last edited: 5/15/23
*/
extern crate horrorshow;
use horrorshow::prelude::*;
use horrorshow::helper::doctype;
pub fn main(){
println!("if you can read this, you reached the HTML class.");
}