language
Here are 5,268 public repositories matching this topic...
Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. https://vlang.io
-
Updated
May 10, 2022 - V
-
Updated
May 9, 2022 - JavaScript
The Ruby Programming Language [mirror]
-
Updated
May 10, 2022 - Ruby
I'm Writing a ThemeColor Plugin, use Visitor.
In fn:visitColor , node.parent sometimes is null (box-shadow:0 0 0 1px #999 inset). I can't find the parent Declaration Node of Color Node.
so I want to [less.js/lib/less/visitors/visitor.js Visitor.prototype.visit](https://github.com/less/less.js/blob/0e268598c8327b9e8d36d9bb2edfde95d8d787be/packages/less/src/less/visitors/visitor.js
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 "¡¡
Tracking ECMAScript Proposals
-
Updated
Apr 30, 2022
On Windows, when stack size limit is exceeded, the program ends with "Error: execution of an external program failed" with no details provided. For noobies like me, it might be helpful if the compiler gives some indication of why that is.
The simplest would be to create a warning when a single large array is defined in the code.
More advanced solution would take the combined the sizes of diffe
ChatterBot is a machine learning, conversational dialog engine for creating chat bots
-
Updated
Apr 8, 2022 - Python
The Dart SDK, including the VM, dart2js, core libraries, and more.
-
Updated
May 10, 2022 - Dart
Better tools for thought
-
Updated
Mar 20, 2018 - TypeScript
퀵 정렬 - bold 설정
설명
퀵 정렬 게시글 중 bold 설정이 일부 들어가지 않았습니다.
링크
스크린샷
- <img width="600" alt="image" src="https://user-images.githubusercontent.com/57972338/161484958-416f6d20-33df-412a-a5ca-c72f7
List of 78 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI.
-
Updated
May 11, 2022 - PHP
The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.
-
Updated
Apr 6, 2022 - C
Haxe - The Cross-Platform Toolkit
-
Updated
May 10, 2022 - Haxe
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
A statically typed lisp, without a GC, for real-time applications.
-
Updated
Apr 22, 2022 - Haskell
Add Scents
It would be nice if using the built-in debug function in .60 files autogenerated Rust code which used the debug macro from the log crate. This would allow applications to choose the logging implementation instead of always printing directly to standard out. It would also be nice to add functions for the other log levels (trace, info, warn, error).
Scala.js, the Scala to JavaScript compiler
-
Updated
May 9, 2022 - Scala
Gravity Programming Language
-
Updated
Sep 18, 2021 - C
Pythonic Smart Contract Language for the EVM
-
Updated
May 10, 2022 - Python
// JavaScript
const answer = window.prompt("What's your name?","");
const greeting = answer === null ? "How rude!" : answer ? `Hello, ${answer}!` : "I'll call you Darth";
alert(greeting);// Mint
sequence {
greeting = sequence {
answer = Window.prompt("What's your name?","")
if(answer == ""){
"I'll call you Darth" // Never happens
} elseImprove this page
Add a description, image, and links to the language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the language topic, visit your repo's landing page and select "manage topics."


Bug Report
In classes, accessors (aka getters/setters) and generators can't be named with
constructor. They're Syntax Errors defined in spec.References:
MethodDefinition