Skip to content

Instantly share code, notes, and snippets.

static class StrUtils
{
static string cRef =
"\n\n\n\n\n" +
"\n'|¦ˉ‘’‚" +
"\nј" +
"\n !I`ijl ¡¨¯´¸ÌÍÎÏìíîïĨĩĪīĮįİıĵĺļľłˆˇ˘˙˚˛˜˝ІЇії‹›∙" +
"\n(),.1:;[]ft{}·ţťŧț" +
"\n\"-rª­ºŀŕŗř" +
"\n*²³¹" +
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VRageMath;
namespace Script
{
#region ingame script start
static BigInteger ProdTree(int l, int r)
{
if (l > r)
return 1;
if (l == r)
return l;
if (r - l == 1)
return (BigInteger)l * r;
int m = (l + r) / 2;
return ProdTree(l, m) * ProdTree(m + 1, r);
@krypt-lynx
krypt-lynx / jff-csv.cs
Last active July 25, 2020 21:31
Comma Separated Values reader/writer
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace csv
{
static class CSV
{