Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

the50.c
#include "the50.h"

void the50_led_on() {
  DDRB |= (1 << 7); PORTB &= ~(1 << 7);
}

void the50_led_off() {
  DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
}