Skip to content

Jbonez87/rust-collections

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust Collections

Prerequisites

Install rust on your local machine if it isn't installed already. You can follow the Rust Installation Guide

Running this project

Once rust is installed, run the following commands in your terminal:

  1. cargo build
  2. cargo run and then follow the prompts.

This will enable you to test the outputs of the project.

Editing the Collections

Feel free to fork and edit this project however you see fit. For example, try adding more properties to the SpreadsheetCell enum and editing the match statement arms that use it. Here's what that could look like:

pub enum SpreadsheetCell {
    Int(i64),
    Float(f64),
    Text(String),
    // add new Title property here
    Title(String)
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages