Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

nth-prime.rs
use nth_prime as np;

#[test]
fn test_first_prime() {
	assert_eq!(np::nth(0), 2);
}

#[test]
#[ignore]
fn test_second_prime() {
	assert_eq!(np::nth(1), 3);
}

#[test]
#[ignore]
fn test_sixth_prime() {
	assert_eq!(np::nth(5), 13);
}

#[test]
#[ignore]
fn test_big_prime() {
	assert_eq!(np::nth(10_000), 104_743);
}