programming-language
Here are 5,584 public repositories matching this topic...
-
Updated
Jun 24, 2022 - Kotlin
-
Updated
Jun 24, 2022
-
Updated
Jun 24, 2022 - V
-
Updated
Jun 10, 2022 - JavaScript
-
Updated
Mar 24, 2022 - TypeScript
Description
Importing an AST with --import-ast
using a large JSON file results in a stack overflow and segmentation fault with certain output options.
A quick run with memcheck shows that it stems from a regex match.
Environment
- Compiler version: 0.8.16-develop.2022.6.21+commit.c3ea8661.mod.Linux.g++
- Target EVM version (as per compiler settings): london
- Operating system:
-
Updated
Jun 4, 2022 - Python
-
Updated
Jun 21, 2022 - Perl
-
Updated
Jun 24, 2022 - Python
-
Updated
Jun 23, 2022 - OCaml
-
Updated
Jun 24, 2022 - Dart
-
Updated
Jun 23, 2022 - Go
-
Updated
Apr 28, 2022
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
May 11, 2022
-
Updated
Jun 22, 2022 - JavaScript
-
Updated
Jun 23, 2022 - TypeScript
This code is a bit bogus. If opt can be NULL, the declaration typecheck_t* t = &opt->check;
could crash the compiler. In any case, it looks like the t declaration could be safely moved into the scope of the if-branch, where it is properly guarded against opt == NULL.
-
Updated
May 18, 2022 - Go
-
Updated
Jun 21, 2022 - Haxe
-
Updated
Jun 24, 2022 - Red
-
Updated
Jun 24, 2022 - Go
-
Updated
Apr 22, 2022
-
Updated
Jun 24, 2022 - Java
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
-
Updated
Sep 18, 2021 - C
Something like...
const puppies = map.from_list([
"August",
"Dot",
"Mady",
"Spot",
"Toby"
] |> list.map(fn (name) { #(name, Puppy(name, good: True, soft: True)) }))
...turns into...
Improve this page
Add a description, image, and links to the programming-language topic page so that developers can more easily learn about it.
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."
This subject was initially discussed in https://discourse.julialang.org/t/efficient-way-to-split-string-at-specific-index/83115/17 regarding a way to split a string into equal-length substrings.
The solutions discussed involved (for a string composed of 10 blocks of 8 strings)
split8(str::String) = [str[i+1:8] for i in 0:8:length(str)]