eta
eta copied to clipboard
The Eta Programming Language, a dialect of Haskell on the JVM
Source Code: ```haskell import Text.Printf main :: IO () main = printf "Hello %s!" "soirbleu" ``` Output: ```shell ``` > etlas run Error[error]: Please report this as a bug using...
Source Code: ```haskell main :: IO () main = do putStrLn "Three ways to navigate the tour:" putStrLn "1) Click Menu button" putStrLn "2) Left and Right buttons" putStrLn "3)...
We can support stockage build plans by extending the sandbox mechanism `etlas sandbox ...` to support specifying a build plan and then automatically adding the info from the build plan...
## Description I want to export a function like this: foreign export java "@static eta.example.MyClass.sayAnything" sayAnythingEta :: String -> IO () sayAnythingEta text = do putStrLn text return text How...
I want to use duckling on jvm and I built duckling-0.1.6.1 with `--enable-uberjar-mode` and run the excutable jar, it raised exception `Exception in thread "main" eta.runtime.exception.EtaException: WrapPCRE.hsc was not compiled...
Source Code: ```haskell main :: IO () main = putStrLn "Hello World!" ``` Output: ```shell Error[error]:
Source Code: ```haskell main :: IO () main = do putStrLn "Interact with me!" putStrLn "Click Run button" putStrLn "Click Reset button" putStrLn "Click Delete button to clear the console"...
Source Code: ```haskell main :: IO () main = putStrLn "Hello World!" ``` Output: ```shell Error[error]:
## Description I tried to build `hoogle` (sha: fca9b98652540ac513af99cca0c103ac83444b5c) with `etlas build`. Got the following error: ``` Building library for mmap-0.5.9.. [1 of 1] Compiling System.IO.MMap eta: panic! (the 'impossible'...
I've seen elsewhere that some functionality from base has not been implemented. The lack of eqTypeRep and HRefl from Type.Reflection are the one thing stopping us from using eta in...