Skip to content
haskell logo

Haskell

Haskell is a functional (that is, everything is done with function calls), statically, implicitly typed (types are checked by the compiler, but you don't have to declare them), lazy (nothing is done until it needs to be) language.

Here are 5,756 public repositories matching this topic...

studoot
studoot commented Jul 10, 2019

Is your feature request related to a problem? Please describe.
Catch2 is advertised as a 'header-only' library - which leads one to expect it to be usable within executable code on Compiler Explorer, using the 'a.out' option.

However, Compiler Explorer incorporates Catch2 using its include directory, which contains all the component header/source fil

rahulmutt
rahulmutt commented Jan 23, 2019

Laziness is a particularly tricky topic, but once you get a handle on it, it's just as easy to fix laziness bugs as it is to fix memory leak issues that you may stumble across in GC'd languages. We should add a dedicated section to the user guide on laziness as well as the runtime system, how to analyze STG code for performance, and how to deal with SOEs.

Lermex
Lermex commented Jul 14, 2019

This issue is to announce that I'm working on implementing a Miso submission for Realworld. This is aiming to be the most comprehensive Miso example with pages, routing, auth, css, etc.

The only thing it's not gonna cover, at least initially, is full-stack development with shared types. I'll think about adding that (maybe in a separate example?) when

dmwit
dmwit commented Oct 9, 2019

In the description of target syntax for cabal v2-build, it's not super clear which bits of the syntax are variables that the user should replace with their own text, and which are literal strings that should be copied verbatim into a target string. I think it's this way:

  • variables: package, ctype, ctypes, component
  • literals: all, lib, libs, libraries, flib, flibs, `
TerrorJack
TerrorJack commented Sep 10, 2019

Right now, we have tail call opcode support for the wasm-toolkit backend, which uses native return_call and return_call_indirect to avoid trampolining for cmm function calls. The binaryen library already supports tail call opcodes now, so it's good timing to update our in tree binaryen, and implement tail call opcode for the binaryen backend as well.

axcmp
axcmp commented Sep 12, 2019

Suggesting the implementation of logarithmic and exponential functions into Tidal.

log function prototype

log x base

Base could be optional, with e being the default value.

Example results:

log 1000 == 6.907755278982137

log 1000 10 == 3

log 1000 2 == 9.965784284662087

etc.

d1 $ s “sample”
	# speed (slow 2 $ log ((run 100) + 1) 100)

exp funct

You can’t perform that action at this time.