Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mode name
drwxr-xr-x .exercism/
drwxr-xr-x src/
drwxr-xr-x tests/
-rw-r--r-- .gitignore
-rw-r--r-- Cargo.toml
-rw-r--r-- HELP.md
-rw-r--r-- README.md
README

Gigasecond

Welcome to Gigasecond on Exercism’s Rust Track. If you need help running the tests or submitting your code, check out HELP.md.

Instructions

Given a moment, determine the moment that would be after a gigasecond has passed.

A gigasecond is 10^9 (1,000,000,000) seconds.

If you’re unsure what operations you can perform on PrimitiveDateTime take a look at the time crate which is listed as a dependency in the Cargo.toml file for this exercise.

Source

Created by

Contributed to by

Based on

Chapter 9 in Chris Pine’s online Learn to Program tutorial. - http://pine.fm/LearnToProgram/?Chapter=09