Skip to content
#

programming-language

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

julia
stevengj
stevengj commented Apr 2, 2022

Currently, this is defined only for arrays, but it seems like we should have

normalize(x::Number) = x / abs(x)

(I just came across this when trying to implement this algorithm for random unitary matrices, which is basically Q * Diagonal(normalize.(diag(R)), but I discovered that normalize didn't work.)

linear algebra good first issue
ponyc

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 Apr 15, 2022
  • Red
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
vstreame
vstreame commented Apr 9, 2022

Today, if you write the code

pub fn foo() {
}

inside of a module you will get the following error back from the Gleam compiler:

error: Syntax error
  ┌─ ./src/foo.gleam:6:1
  │
6 │ }
  │ ^ I was not expecting this.

Expected one of: The body of a function

I think this can be confusing, especially for new Gleam developers. Instead I think we should do one

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