This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION | |
:: === COLOR CONFIGURATION === | |
set "CLR_INFO=0A" | |
set "CLR_WARN=0E" | |
set "CLR_ERROR=0C" | |
set "CLR_RESET=07" | |
:: === OS VERSION CHECK === |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Le0Wolf.Gists | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics.Contracts; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |