Skip to content

Instantly share code, notes, and snippets.

View Starr79's full-sized avatar

Crystal G Cisco Starr79

  • Beautifully Made & Designed
  • Ohio, Lima
  • 16:58 (UTC -04:00)
  • X @Starr33
View GitHub Profile
@infinnie
infinnie / Program.cs
Created March 29, 2019 01:14
Fixed Point Combinator in C#
using System;
namespace ConsoleApp1
{
class Program
{
delegate T Out<T>(T x);
delegate Out<T> RecOut<T>(RecOut<T> x);
class YClass<T>
{