programming-language
Here are 2,946 public repositories matching this topic...
-
Updated
Apr 13, 2020 - Kotlin
I believe methods should have a bit more of information, consider,
struct A end
methods(A)
struct B{T} end
methods(B)
methods(B{Int})
struct C{T}
C(x) = new{Int}(0)
end
methods(C)
Basically the way that methods are collected / match isn’t well documented.
Example ( JSON decoding/encoding ):
Returns:
You just found a bug. V can't compile this program, but it should. Please create a GitHub issue.
Solution: ?
fn main() { age = 21 }
Using Run works perfectly.
But all other examples like Strings, ...
name := 'Bob' println('Hello, $name!') // $` is used for strin
Hi all! After working on it for 3 months, I'm excited to announce that the first draft of 《文言陰符:文言文編程入門》, Introduction to Programming in Wenyan is available! It is an introduction to wenyan-lang as well as programming in general, written completely in idiomatic Classical Chinese! Check it out!
You can either download an authentic-looking [PDF](https://g
-
Updated
Mar 28, 2020
-
Updated
Mar 31, 2020 - Shell
-
Updated
Apr 13, 2020 - JavaScript
Is there some way to differentiate between comments and (doxygen-like) documentation?
Typically code comments are
// foo
/* foo */While doxygen and almost everything else uses the following:
/// foo
//! bar
/** foo */
/*! bar */Being able to get two different metrics would be extremely helpful in assessing "quality of documentation"...
Thanks!
This is probably related to if not identical to #1687, but we at least need a better error message.
switch(1+1) {
| 2 => ()
/*
works
*/
| _ => ()
}
switch(1+1) {
| 2 => ()
/
-
Updated
Apr 12, 2020 - Rust
In the version deployed at http://play.witheve.com/#/examples/quickstart.eve the hover text for sidebar expand/collapse button is reversed. Look through the repo for the offending code but could not find it.
-
Updated
Oct 4, 2019
I tried compiling the SDK this weekend on Windows. I followed the directions here
I was able to set up the depot tools correctly (I think).
However, I was getting errors when attempting to build the sdk with:
.\tools\build.py --mode release --nnbd --arch x64 create_sdk
Eventually, I got to a point where I was getting this error
Eclipse OMR is a C/C++ toolkit for building language runtimes. OMR has a high level JIT compilation library called JitBuilder, which is built on OMR's more general compilation framework. We also have a demo VM called [Base9](https://github.com/b9org/
Describe the bug
tightkeyword of VID doesn't apply when it's not following the text (both 2nd and 3rd faces should be small):
view [
text "text" blue
text "text" tight blue
text tight blue "text"
]
- It does not account for extra decorations some faces might have:
;
//resultado 1.0.2.9,00
Here I have another suggestion, this time about our Gravity's CLI. I come up with this list of improvements which I think should benefit the project:
- If no arguments passed it should display help section instead of opening
REPL - To open
REPLadd a new flag for examplegravity --repl gravity new [project]- a new simple command to create new project. (A wizard which helps with co
-
Updated
Jun 25, 2019 - Swift
Current behavior:
.> view ##Nat
⚠️
The following names were not found in the codebase. Check your spelling.
##Nat
.> names ##Nat
😶
I couldn't find anything by that name.
.> alias.type ##Nat Nat
Done.
.> names ##Nat
Type
Hash: ##Nat
Names: Nat
.> view ##Nat
-- Nat is built-in.
Desired behavior would be something like:
Motivation
In supercollider/supercollider#4572 we discussed the need for better documentation on when collection functions test on equality vs identity. For instance, SequenceableCollection:indexOf tests on identity, but you wouldn't know it f
Really nice project.
Writing in coconut files, you lose all the IDE integrations for Python. For example, I use VSCode and all the intellicode and hints of course doesn't work for cocount.
I am not too familiar but perhaps theres needs to be a separate language server or maybe you could leverage the existing Python integrations. Either way, better IDE integration wo
-
Updated
Apr 13, 2020 - JavaScript
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."

Today I stubled upon this issue and I was hoping to find, in the reference doc, more examples of type assertions on pointer types but, unfortunately, there seems to be none.
Would it make sense to extend the current Type assertions section with t