horses icon indicating copy to clipboard operation
horses copied to clipboard

small programming language. pls be gentle.

Results 26 horses issues
Sort by recently updated
recently updated
newest added

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/danieljharvey/horses). ## Config Migration Needed - [ ]...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | digest | `b4ffde6` -> `11bd719` | --- ### Configuration...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [KyleMayes/install-llvm-action](https://redirect.github.com/KyleMayes/install-llvm-action) | action | major | `v1` -> `v2` | --- ### Release...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [haskell-actions/run-ormolu](https://togithub.com/haskell-actions/run-ormolu) | action | major | `v14` -> `v15` | ---...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://redirect.github.com/actions/cache) | action | major | `v3` -> `v4` | --- ### Release...

-- check we're formatted `smol format ` -- do formatting `smol format --write`

```haskell def swap (pair: (a,b)): (b,a) { case pair of (a,b) -> (b, a) } property "two swaps is same as original" (pair: (a,b)) { swap (swap pair) == pair...

as a treat

Generating instances for this test causes an infinite loop to happen. ```haskell type List a = Cons a (List a) | Nil instance Eq Bool { \a -> \b ->...

Boxing everything is going to be much easier with opaque pointers, so let's upgrade! This is a big change to `llvm-hs` so will mean a lot of fannying around annotating...