Juniper
Juniper copied to clipboard
I currently try to build and upload the blink example with VsCode using the Arduino IDE. But I get the following error message when I try to compile the generated...
I'm having a hard time writing a program that fades in and out a led, this is what i'm trying: ``` module Blink open(Prelude, Io, Time) let boardLed = 11...
We currently cannot track what variables a C++ block uses, leading to potential ordering problems when generating output C++. For example, a inline C++ in a function may refer to...
Hello! The language looks awesome! I just started using it but I didn't find editor support except for syntax highlighting, so I started to create a Language Server Protocol implementation...
Currently Juniper does not check for exhaustiveness of pattern matches in match or let blocks. This feature is common in functional languages and is important for avoiding unexpected crashes. It...
Hello again! I keep making detailed proposals for things where I either missed something or there's a good reason it can't work. So I figured I should just do a...
Currently the Mac OSX releases are not signed or notarized in anyway. This causes security warnings when attempting to run the Juniper compiler that require the user to go into...
It would be nice if Juniper had at least a rudimentary package manager and build system. To get started, perhaps we could have some sort of centralized repository that points...
Currently the standard library (and the compiler itself) has no unit tests. The standard library is an obvious target since unit tests for these would exercise many parts of the...
Currently it is not possible to pattern match arguments directly in the function or lambda heads. It would be nice to be able to do this, specifically for tuples and...