programming-language
Here are 5,191 public repositories matching this topic...
-
Updated
Mar 6, 2022 - Kotlin
-
Updated
Mar 1, 2022
-
Updated
Feb 23, 2022 - JavaScript
-
Updated
Mar 6, 2022 - V
-
Updated
Feb 8, 2022 - TypeScript
-
Updated
Jan 24, 2022 - Python
Requested in ethereum/solidity#12716 (comment).
Related to #12350.
I would actually be happier if we could find a way to somehow set an "illegal" locale so that we get an error whenever we perform a locale-dependent operation (and of course remove all locale-dependent operations).
-
Updated
Feb 23, 2022 - Perl
-
Updated
Feb 6, 2022 - Python
-
Updated
Mar 3, 2022 - OCaml
-
Updated
Mar 5, 2022 - Dart
-
Updated
Mar 2, 2022
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Mar 3, 2022
-
Updated
Mar 2, 2022 - JavaScript
-
Updated
Mar 5, 2022 - TypeScript
The following code fails to compile, as expected:
actor Main
new create(env: Env) =>
let f = {() => None}
f.string()However, the error message says:
Error:
[main.pony:4:6](): couldn't find 'string' in '$1$0'
f.string()
^
Internally to the compiler (I believe) we don't have a proper name for lambdas, so it's not clear what would be the a
-
Updated
Feb 23, 2022 - Go
-
Updated
Mar 6, 2022 - Red
-
Updated
Mar 5, 2022 - Haxe
-
Updated
Mar 5, 2022 - Go
-
Updated
Mar 5, 2022 - Java
-
Updated
Sep 3, 2021
When the user defines an invalid top-level term, the error message should give correct info about what is permissible.
Of course, if we want to bring back the namespace functionality, disregard!
Motivation
The .postf is a neat shortcut for posting a formatted string.
But personally I see my self doing things like "% is not implemented yet".format("something").warn and the equivalent with .error all the time.
Description of Proposed Feature
Add the following methods to String:
// Equivalent to .postf
St
-
Updated
Sep 18, 2021 - C
-
Updated
Mar 1, 2022 - JavaScript
For example:
error: Unknown label
┌─ ./src/gleam/otp/task.gleam:176:15
│
176 │ |> list.map(wit: async_apply(_, list.map(_, f)))
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Did you mean `with`?
The other labelled arguments that this constructor accepts are `with`.
In this case it would be expected that only the wit would be underlined.
Also, one would e
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."
Currently, we mostly map julia function arguments directly to LLVM arguments regardless of how many there are. That probably causes us to hit some pathological cases, since LLVM is not likely to care about or optimize handling 1000 arguments, since most front-ends do not generate that.
For example: