Skip to content

Instantly share code, notes, and snippets.

View Flinner's full-sized avatar
🐰
🐰 🐰 🐰 🐰 🐰 🐰 🐰 🐰 🐰

Flinner Flinner

🐰
🐰 🐰 🐰 🐰 🐰 🐰 🐰 🐰 🐰
View GitHub Profile
@Flinner
Flinner / start.v
Created July 8, 2021 16:40
V coreutils starter
module main
import flag
import os
const (
app_name = 'LeName'
app_version = 'v0.0.1'
app_description = 'LeName is a starter template'
)
@Flinner
Flinner / Rush.ino
Last active October 10, 2024 15:56
#define DEBUG 0 // Set to 1 to enable debug output
#if DEBUG
#define DEBUG_PRINT(x) Serial.print(x)
#define DEBUG_PRINTLN(x) Serial.println(x)
#else
#define DEBUG_PRINT(x)
#define DEBUG_PRINTLN(x)
#endif