Skip to content

FourLineCode/minicel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minicel - Minimal Excel Engine

A simple excel engine without ui to parse .csv files.
Written in Go

Input

A      , B      , C
1      , 2      , 3
4      , 5      , 6
=A1+C2 , =A2+B2 , =C1-B1

Output

====================
A    | B    | C    |
1    | 2    | 3    |
4    | 5    | 6    |
7    | 9    | 1    |
====================

Usage

  • Build
$ make build
  • Run
$ ./minicel input.csv

Replace input.csv with your input file name