A little POC of a retry
function in JavaScript.
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
#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. |
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
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 = |
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
module Lambdulus exposing (..) | |
import Set exposing (Set) | |
type Expression | |
= Variable String | |
| Abstraction String Expression | |
| Application Expression Expression | |