Skip to content

Instantly share code, notes, and snippets.

View lambduli's full-sized avatar

Jan Liam Verter lambduli

  • Charles University, CTU at Prague
  • Prague, Czech republic
View GitHub Profile
#lang racket/base
#|
Data: 06/07/202
Author: Lambduli
github: @lambduli
This script is intended for teachers and students.
If you are a teacher and frequently ask your students to write some Racket code in front of the class, you can thank them / give them compliment with this script when they are done.
@lambduli
lambduli / main.elm
Created May 10, 2021 11:55
99 Bottles Of Beer in Elm
module Main exposing (Model, Msg(..), break, init, main, toParagraph, update, verseToHtml, view)
import Browser
import Html exposing (Html, br, div, p, text)
import List exposing (append, map, singleton)
import String exposing (fromInt)
break : Html msg
break =
module Lambdulus exposing (..)
import Set exposing (Set)
type Expression
= Variable String
| Abstraction String Expression
| Application Expression Expression
@lambduli
lambduli / README.md
Last active March 24, 2024 14:41
Just a little POC of retry function.

Retry

A little POC of a retry function in JavaScript.