If you are looking for version 2 of Vyxal, you can find it here
Vyxal is an stack-based esoteric array language that is dedicated to dominating competition in code golf challenges. This means that it strips away all need for boilerplate, long function names and impractical source layouts. However, it also has a more traditional and familiar way of expressing itself if needed. Vyxal 3 is the third major iteration of the language that drives home this key design goal. Here's how.
Vyxal 3 is still a stack based programming language that uses a Single Byte Code Set (SBCS) for scoring well in code golf. It also retains some of the key features of. version 2, such as contexts, modifiers and many, many type overloads.
It also maintains the more prac-lang-centric features such as variables and comments that version 2 has.
That's about it.
Ever wanted to write vyxal without needing an on screen keyboard or editor shortcuts? Well now you can! Literate mode is designed to allow you to write vyxal 3 programs in complete ascii while maintaining a SBCS score. It does this by simply converting the literate code into sbcs code. Wanna see it in action?
## A collatz conjecture program
stdin := n ## read the input into n
(. scan-fix: {if even? then halve else increment endif}) := collatz
$n $collatz call
turns into:
?#=n⸠ᵡλ#{e|½|ꜝ}#{}#=collatz#$n#$collatzĖ
## The classic fizzbuzz
100 map{
n [3, 5] divides?
"FizzBuzz" halve
dot-product maximum
} join-on-newlines
turns into:
100Mλn#[3|5#]Ḋ"FizzBuzz"½ḋG}ṅ
## How about something that generates all the fibonacci numbers?
## Like actually all of them
relation add from [1, 1] end
## is it really that simple?!
(yes!)
turns into:
Ṇ+|#[1|1#]}
Isn't it snazzy? You can finally do well at golf without needing to smash your head on a weird looking keyboard!
Notice that scan-fix:
in the collatz example? That's a modifier! "But version 2 already has modifiers, you said so yourself!" you say. Well version 2 had a very limited selection of modifiers, as they were more experimental at the time. Now, there's like 20 modifiers, all waiting to be used. Plus, they've gotten a little upgrade, in the form of
Ever wanted to use jelly but realised it's way too hard? (who even sells hard jelly anyway? I thought the whole point was that it was soft and jiggly.) Well forget about using Ohm, because Vyxal 3 just got its own element grouping based on arity system. Plus it's much easier to understand!
Say you have a nilad followed by a monad (basically a constant followed by something that takes a single thing). Usually this sequence would be treated as two elements. However, it's obvious that the monad is going to operate directly on the nilad, as it's the same as writing monad(nilad)
. So instead of treating it as 2 things, it treats it as a single thing. This is useful for modifiers because you might have a situation where you can squeeze an extra element into what a modifier modifies where you wouldn't have been able to do so previously.
But that's all esolang specific stuff. If you've never used a golfing language before, you're probably wondering what all of that element stuff means. Well I've got prac-lang material for you that I think you'll love.
To define a variable:
value #=name (sbcs)
value := name (literate)
And to retrieve its value:
#$name (sbcs)
$name (literate)
"that's all good and well, but that's the same capabilities of version 2, how is that a buff?"
Because a) augmented variable assignment:
function #>name (SBCS)
function :> name (literate)
(works with any element or function, not just the regular +=
, -=
, *=
etc you're probably used to seeing)
And b) variable unpacking
#:[x|y|z] (SBCS)
:=[x|y|z] (literate)
Variable unpacking can support any number of depths (e.g. [a|b|[[[[c|d]]]|e]|f]
). Think of it like tuple unpacking in python but a little more powerful.
The entire list of elements has been re-worked to remove some unnecessary overloads in version 2, and add some sorely missing elements that would make golfing a lot easier and shorter.
For a more specific overview of Vyxal 3, check out the tour
There's a few methods:
-
Head over to the online interpreter (this is the easiest).
-
Download one of the release
jar
files, and run using
java -jar vyxal-jar <arguments>
-
Download one of the executables for your platform and run as you would usually run an executable.
-
Download the repository source and run with
./mill jvm.run
. See Building.md for more details.
For instructions on how to set up a development environment and an overview of
how the interpreter works, see the contributing
folder.
Enjoy the cookies.