Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

test.sprak
#############
# Functions #
#############
void run_tests(string name, array tests)
	number count = 0
	loop test in tests
		if !equal(test[0], test[1])
			Print(name + " " + count + ": fail")
			Print("left: " + test[0])
			Print("right: " + test[1])
		end
		count += 1
	end
	Print(name + " tests done.")
end