carbon-lang icon indicating copy to clipboard operation
carbon-lang copied to clipboard

Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)

Results 398 carbon-lang issues
Sort by recently updated
recently updated
newest added
trafficstars

Can we get a simple readthedocs type of website for the carbon's documentation. Because its hard to navigate in github and the readability is not very good. Its easy to...

leads question

I think something like move ctor/assign should be in language. Will it be like rust, with destructive move? Or like c++? I think both approaches have some pros and cons....

I tried to build Carbon from this command. ```bazel run //explorer -- ./explorer/testdata/print/format_only.carbon``` Then I got his error message. ```bash Extracting Bazel installation... Starting local Bazel server and connecting to...

Currently, syntax highlighting of comments, keywords, functions, classes, and numeric literals are implemented. Light | Dark :-------------------------:|:-------------------------: ![Demo of the syntax highlighting or Carbon under a light mode](https://user-images.githubusercontent.com/8359374/181000240-dd563955-9a4a-49a0-b1a5-65555f38b157.png) | ![Demo...

For example, will you concatenate strings with `+` or another operator? Context: https://en.wikipedia.org/wiki/Concatenation Advantage of `+`: - Matches C++, Python. - Don't have to allocate an extra symbol. Advantage of...

leads question

There are a number of contexts in which we have suggested that certain values should have unique types. Moreover, there have been suggestions that we can define the type of...

Steps to reproduce: ``` export CC=clang ``` Then follow the tutorial ``` # Install bazelisk using Homebrew. $ brew install bazelisk # Install Clang/LLVM using Homebrew. # Many Clang/LLVM releases...

I get this error when running `$ bazel run //explorer -- ./explorer/testdata/print/format_only.carbon` `ERROR: /home/unai/.cache/bazel/_bazel_unai/c979266a4479bde9c9b8c348f74cbcfb/external/bazel_cc_toolchain/BUILD:20:19: in cc_toolchain_suite rule @bazel_cc_toolchain//:bazel_cc_toolchain: The include path '/usr/lib/llvm/14/bin/../../../../lib/clang/14.0.4/share' is not normalized.` In fact, when I run...

Doing `bazel test -c opt -k ...` with llvm-15 fails some warning from absl (abseil) code, like: ``` n file included from external/com_google_absl/absl/base/internal/thread_identity.cc:27: In file included from external/com_google_absl/absl/base/call_once.h:34: In file...

if there is one thing needs to do better in c++, it's the cross-platform build, even better, a self-contained cross-platform build like GOOS for go build, so I can build...