Skip to content

Instantly share code, notes, and snippets.

View neofight78's full-sized avatar

William Hoggarth neofight78

View GitHub Profile
@neofight78
neofight78 / main.rs
Created June 20, 2021 16:43
Simple FEN Parser v1
use std::fmt::{Display, Formatter};
use std::{env, fmt, process};
#[derive(Debug, Copy, Clone)]
enum Pieces {
None,
WPawn,
WKnight,
WBishop,
WRook,