Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Activity for lyxal‭

Type On... Excerpt Status Date
Answer A: Obligatory Quine Challenge
Vyxal/Keg , 8 bytes `:.,`:., Try it online! (Keg) The explanations are the same for both languages, seeing as how Vyxal is heavily based on Keg. Explained `:.,` # Push the string ":.," :., # Duplicate it, print it raw and then print it nice
(more)
over 3 years ago
Edit Post #279166 Post edited:
over 3 years ago
Edit Post #279166 Post edited:
over 3 years ago
Edit Post #279166 Post edited:
over 3 years ago
Edit Post #279166 Post edited:
over 3 years ago
Edit Post #279166 Post edited:
over 3 years ago
Edit Post #279166 Initial revision over 3 years ago
Answer A: Evaluate a single variable polynomial equation
Vyxal, 6, 5, 4 bytes ``` Źe∑ ``` Try it Online! Takes input in the format `coeffs, x` Explained ``` Źe∑ Ź # Generate range [0, len(coeffs)) e # Calculate x [0, len(coeffs) (vectorising) # Multiply the coefficients by the exponated x's. The lists are extended with 0s...
(more)
over 3 years ago
Edit Post #279154 Initial revision over 3 years ago
Answer A: "Hello, World!"
Vyxal, 2 bytes KH This pushes the string "Hello, World!" to the stack and automatically prints it. Also, this is the first answer on the site! Woo!
(more)
over 3 years ago