Skip to content

Instantly share code, notes, and snippets.

View roschler's full-sized avatar

Robert Oschler roschler

View GitHub Profile
@roschler
roschler / normcore-llm.md
Created August 30, 2023 05:22 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads
@roschler
roschler / Playground.hs
Created September 3, 2021 22:04
Plutus Playground Smart Contract
import qualified Data.Text as T
import Language.Plutus.Contract hiding (when)
import Language.PlutusTx.Prelude
import Playground.Contract
-- | A 'Contract' that logs a message.
hello :: Contract BlockchainActions T.Text ()
hello = logInfo @String "Hello, world"
endpoints :: Contract BlockchainActions T.Text ()