-
In Rust, shadowing of let bindings are allowed. I have found this feature relatively nice to have.
One example is casting data types:
```
fn my_fn(i: F32):
let i = I32(i)
print(i)
```
…
-
I will maintain in this OP a summary of current proposed syntax as I understand it to be. Note this is not authoritative, subject to change, and it may be inaccurate. Please make comments to discuss.
…
-
## Minimal Example
```raku
sub foo(Int @a) { dd @a; }
foo [1, 2, 3];
# Type check failed in binding to parameter '@a'; expected Positional[Int] but got Array ([1, 2, 3])
```
## Why This is Sur…
-
This issue is for discussion of the proposal to add `data object`. The full text of the proposal is in this [here](https://github.com/Kotlin/KEEP/blob/data-objects/proposals/data-objects.md).
-
# the clean transformers
the clean transformers는 fork해온 repo라 그런지 따로 issues창이 없네
## install error
파이참 프로 버전 라이선스가 끝났다. 칼같네.. 결제와 무료버전 사용 중에 고민하다가 일단 커뮤니티 버전을 다운로드 했더만 오랜만에 install error를 만났다.…
-
Hi All,
It is pretty obvious that the project has come to a bit of a halt and I wondered if there was anything that we can do to get it up and running again?
I don't know the reason why it stop…
-
This is my second draft of a proposal for code generation ("code gen" from now on) through specialized classes called "macros". The issue where this is being discussed is #1482 and my first proposal i…
-
Rather than:
let add x y = x + y in
let square x = x * x in
add 2 (square 3)
I'd like to be able to do something like
let
add x y = x + y;
square x = x * x
…
-
Your ideas about the language awoke my curiousity about some ideas:
As you know, I'm intrigued by the SugarCpp project, syntactically. I've been in the web/nodejs business for a couple of years now, …
-
I _know_ I'm not the first to bring this up - this has been discussed in #151, #152, #185, and probably others - but there are some inconsistencies to fix with `chainRec` that are undoubtedly best add…