foxtran

Results 80 issues of foxtran

Array definition: https://github.com/carbon-language/carbon-lang/blob/2fa74f1d71e9ffda42f3459917ed265439c2bd6f/explorer/testdata/array/index.carbon#L15 Tuple constructor: https://github.com/carbon-language/carbon-lang/blob/2fa74f1d71e9ffda42f3459917ed265439c2bd6f/explorer/testdata/generic_function/swap.carbon#L15 I'm a bit confused with these definitions... What is about usage of traditional square brackets in array constructors?

I opened #1661 and many folks thumbs it. I tried to implement some quantum chemistry (which is performance-critical) code and look which features are required for it. Here, it is...

proposal
proposal rfc

I tried to create a new proposal and I got the following error: ``` RUNNING: /usr/bin/gh pr create --draft --label proposal --project Proposals --reviewer carbon-language/carbon-leads --repo carbon-language/carbon-lang --title 'Multidimensional array'...

I have two versions of Julia and CBinding. All tests are done under Ubuntu 20.04, WSL2, Intel(R) Core(TM) i9-10940X CPU @ 3.30GHz. There are two scripts that have close definitions....

Here, I propose slices which are presented in [QuickSort](https://github.com/carbon-language/carbon-lang/blob/trunk/docs/images/snippets.md#quicksort). The proposed syntax is closed to Fortran, [Python](https://docs.python.org/3/library/functions.html#slice), and [Go](https://go.dev/tour/moretypes/7) slices (Obviously the list of languages could go on).

proposal
proposal rfc

This proposal adds arrays to Carbon programming language. It presents several definitions of arrays, their internal representation and indexing (by integer value and array of integers). I did not look...

proposal
proposal rfc

This proposal adds basic [array programming](https://en.wikipedia.org/wiki/Array_programming).

proposal
proposal draft

TODO: add summary and links here

proposal
proposal draft

I have tried to reprint the following code: ```fortran program main integer val, val integer val, val end ``` And lexer is not failed :-(

Type: Bug

The following code should lead to an error of Fortran 90 lexer, but it does not: ```fortran program main integer, parameter :: val end ```