jarble

Results 72 issues of jarble

It seems that Klipse is not yet able to compile and run Perl scripts in a browser, but it should be possible to do this using [Perlito](https://github.com/fglock/Perlito). Will Klipse be...

Futhark has a convenient shorthand syntax for [in-place updates](https://futhark-book.readthedocs.io/en/latest/language.html#in-place-updates), but this syntax doesn't work with records: ``` let record_example a b = let var = {a,b} in let var.a =...

enhancement
question
language

I tried to run this program with the [Perl6 compiler](http://fglock.github.io/Perlito/perlito/perlito6.html), but it won't compile: ``` # this example is from Rosetta Code: # https://rosettacode.org/wiki/99_Bottles_of_Beer#Perl_6 my $b = 99; repeat while...

Is it possible to define generic classes and functions in Ć, like in Java, C#, and C++? If Ć doesn't have generics yet, then the syntax could be based on...

enhancement

When I compile this JavaScript program to C, it prints `0` instead of `1`. This appears to be due to a memory allocation bug, where the `obj` variable is freed...

bug

ts2c often produces incorrect output from JavaScript programs that contain syntax errors. When I try to compile this program: `console.log("This shouldn't compile."); ( (` ts2c produces this program, which also...

ts2c is not yet able to convert strings into floating-point numbers, though this feature would be relatively easy to implement: ``` var a = parseFloat("10.0"); console.log(a+2); ``` It may be...

Is it possible to skip tokens when defining a lexer? I want to split a string into a list of tokens without whitespace, but I don't know if Moo can...

I often re-use the same grammar rules in multiple grammar files, so I want to save these rules in one file and import them into other grammar files. If I...

I tried to define a token as a JavaScript regular expression, but this is a syntax error: `string_literal = /"([^"\\]|\\.)*"/` Is there another way to define tokens using regular expressions,...

enhancement