Is there a way I can add or donate samples to fastled project?

Is there a way I can add or donate samples to fastled project? I mean with the official download. I am so new I am having to make basic stuff and I think it would be helpful to people. Here is an example of code to cycle a strip through colors. I can add the comments to make it much more helpful.

#include “FastLED.h”
#define NUM_LEDS 71
#define DATA_PIN 0
CRGB leds[NUM_LEDS];
static uint8_t hue = 0;

void setup() {
FastLED.addLeds<WS2811, DATA_PIN, GRB>(leds, NUM_LEDS);
}

void loop() {
FastLED.showColor(CHSV(hue++, 255, 128));
delay(50);
}

There’s a code samples section of the g+ group, and I may see about adding something to the wiki for samples.

Thanks Dan. I am also new to g+. I see where you are talking about. I just want to offer the minor help I can for all the help you guys have provided. The information age. I am so lucky!

I didn’t notice the code samples section either. Thanks Daniel for getting us up to speed.