twandylue / mini-excel

mini-excel in Rust.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mini-excel

mini-excel in Rust.

Implement a batch program that can accept a CSV file such as this.

A     | B
1     | 2
3     | 4
=A1+B1| =A2+B2

And outputs:

A | B
1 | 2
3 | 4
3 | 7

The calculation does not need any UI.

Quick Start

$ cargo run -- cal ./input.csv
...

Reference

About

mini-excel in Rust.

License:MIT License


Languages

Language:Rust 100.0%