Skip to content
#

programming-language

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

julia
daharn
daharn commented May 18, 2022

As described already here, running

using Distributed
addprocs(["<remotename>"], exename="<pathToRemoteJuliaExe>", dir="<pathToRemoteHomeDir>")

@fetch myid()

on a host with Julia 1.6.1 and connecting to a remote wit

help wanted parallel good first issue feature
sergiuiacob1
sergiuiacob1 commented May 26, 2022

Description

Tried running multiple unit tests using isoltest like so:

sergiuiacob@Sergius-MacBook-Pro solidity % build/test/tools/isoltest --test "yulSyntaxTests/*;objectCompiler/*"
Unhandled exception caught.
/solidity/test/tools/IsolTestOptions.cpp(99): Throw in function virtual void solidity::test::IsolTestOptions::validate() const
Dynamic exception type: boost::wrapexcept<soli
ponyc
jasoncarr0
jasoncarr0 commented Apr 14, 2022
primitive A
primitive B
actor Main
  new create(env: Env) =>
    let bad = Generic[(A | B)].get()
    env.out.print(match bad
    | let _: A => "D"
    | let _: B => "B"
    end)
interface val Default
  new val create()
class Generic[T: (Default val | None val)]
  let x: T = T.create()
  fun get(): T =>
    x

https://playground.ponylang.io/?gist=60bfbb2f304c0ad519cf0d68dc9

help wanted bug good first issue

Red is a next-generation programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting and cross-platform reactive GUI, while providing modern support for concurrency, all in a zero-install, zero-config, single 1MB file!

  • Updated May 30, 2022
  • Red
rlmark
rlmark commented Jan 25, 2022

When the user defines an invalid top-level term, the error message should give correct info about what is permissible.

https://github.com/unisonweb/unison/blob/6cbd464c0eae2bd3d0a355e09ffef0a409762086/parser-typechecker/src/Unison/PrintError.hs#L1265

Of course, if we want to bring back the namespace functionality, disregard! 😄

good first issue error-message
madskjeldgaard
madskjeldgaard commented Apr 6, 2022

Motivation

The Git class currently doesn't support submodules which prevents for example using submodules in Quark repos.

Description of Proposed Feature

Add a submodule method to Git and add submodule recursion to the Quark install step, eg adding the --recurse-submodules git flag to the clone command. This will download an

enhancement good first issue quarks
NicklasXYZ
NicklasXYZ commented May 29, 2022

Compiling the following Gleam code (with gleam v0.21, node v16.14) to JavaScript:

// A type used to encapsulate all parameters used by the Permuted Congruential 
// Generator (PCG32).
type PermutedCongruentialGenerator {
  PermutedCongruentialGenerator(
    int_1: Int,
    int_18: Int,
    int_27: Int,
    int_59: Int,
    int_31: Int,
    multiplier: Int,
  )
}

// A const
bug help wanted good first issue area:codegen

Improve this page

Add a description, image, and links to the programming-language topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the programming-language topic, visit your repo's landing page and select "manage topics."

Learn more