Skip to content
#

programming-language

Here are 2,946 public repositories matching this topic...

julia
Nosferican
Nosferican commented Feb 14, 2020

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.

wenyan
LingDong-
LingDong- commented Mar 9, 2020

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

mnordine
mnordine commented Apr 6, 2020

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

ponyc
EpicEric
EpicEric commented Oct 8, 2019

When building docs for the stdlib, it seems that the file for the _TestRunner actor is not being generated, which results in the following warnings in MkDocs:

$ ponyc packages/stdlib --docs --pass expr
[snip]
$ cd stdlib-docs
$ mkdocs build
INFO    -  Cleaning site dir
cstffx
cstffx commented Feb 24, 2020

Description

Work in a language specification document.

Why

Keeping up with new features and syntax changes is complicated due to lack of documentation. But everything is easier if each feature is documented in a document that contains a formal description of the language. This could also be useful for those who wish to improve or implement pending features that involve the compile

v2
krader1961
krader1961 commented Mar 25, 2020

The CLI abbreviation expansion feature isn't documented. You can create abbreviations via statements such as edit:abbr['l '] = 'less ' or edit:abbr[gcp] = 'git cherry-pick -x'. Abbreviations are sometimes preferable to a function of the same name for several reasons:

  1. You might want to modify the expanded text before executing it.

  2. You want the expanded text to appear in the command

rafaelg21
rafaelg21 commented Mar 18, 2020
  • Have you checked the guidelines in our Contributing document?

Description

Hola, tengo un problema con esta función, la copie y pegue en mi proyecto sin descargar toda la librería pero su retorno no es correcto. ejemplo

number_format(1029,2,',','.');

//resultado 1.0.2.9,00

Dohxis
Dohxis commented Mar 9, 2017

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 REPL add a new flag for example gravity --repl
  • gravity new [project] - a new simple command to create new project. (A wizard which helps with co

精心收集并分类整理的Swift开发学习资源,包括Apple官方提供的示例代码和文档,以及github上的项目和国内外开发者的技术博客。欢迎提交pull-request一起维护。https://t.me/SwiftCN QQ交流群 32958950 申请请注明开发经验

  • Updated Jun 25, 2019
  • Swift
aryairani
aryairani commented Mar 28, 2020

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:

Samrose-Ahmed
Samrose-Ahmed commented Mar 9, 2020

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

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

You can’t perform that action at this time.