Skip to content
#

programming-language

Here are 5,438 public repositories matching this topic...

julia
anandijain
anandijain commented Apr 27, 2022

I was almost positive that this got fixed but I got this warning. I tried finding the original but can't seem to

┌ Warning: Pkg.installed() is deprecated
└ @ Pkg /Users/sabae/src/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Pkg.jl:661

julia> versioninfo()
Julia Version 1.8.0-beta1
Commit 7b711ce699 (2022-02-23 15:09 UTC)
Platform Info:
  OS: macOS (arm64-apple-darwin21.2.0)
  CP
good first issue logging
haltman-at
haltman-at commented Apr 28, 2022

Description

Suppose I try to compile the following contract:

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Repro {
  function run() public pure returns (string memory) {
    return "¡¡¡";
  }
}

I get the following error message:

ParserError: Invalid character in string.
 --> project:/contracts/Repro.sol:6:12:
  |
6 |     return "¡¡
ponyc

Red is a next-generation programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting and cross-platform reactive GUI, while providing modern support for concurrency, all in a zero-install, zero-config, single 1MB file!

  • Updated Apr 30, 2022
  • Red
madskjeldgaard
madskjeldgaard commented Apr 6, 2022

Motivation

The Git class currently doesn't support submodules which prevents for example using submodules in Quark repos.

Description of Proposed Feature

Add a submodule method to Git and add submodule recursion to the Quark install step, eg adding the --recurse-submodules git flag to the clone command. This will download an

enhancement good first issue quarks
inoas
inoas commented May 1, 2022

See: https://canary.discord.com/channels/768594524158427167/811254431051808778/970422823959015454 for the discussion

Example:

fn module_substract (minuend a: Int, subtrahend b: Int) -> Int {
  a - b
}

pub fn main() {
  // Works as expected:
  module_substract(1, 1) // 0
  1 |> module_substract(subtrahend: 2) // -1
  1 |> module_substract(minuend: 2) // 1

  // Should wor
bug help wanted good first issue area:parser

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