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 »
Challenges

Post History

66%
+2 −0
Challenges Guess the language! (Robbers' Thread)

Cracks Quintec‭'s answer: Canvas My first clue was the echp; if the language used echo then why wouldn't it error on that? The second clue was that the last line contained the exact output we need...

posted 2y ago by Shaggy‭

Answer
#1: Initial revision by user avatar Shaggy‭ · 2021-08-03T08:41:56Z (over 2 years ago)
# Cracks [Quintec‭'s answer](https://codegolf.codidact.com/posts/282967#answer-282967): [Canvas](https://github.com/dzaima/Canvas)

My first clue was the `echp`; if the language used `echo` then why wouldn't it error on that? The second clue was that the last line contained the exact output we needed so I suspect that we're looking for a golfing language that ignores all but the last line of a programme and doesn't require strings to be quoted. Tried a few that I _thought_ might have those capabilities and ended up with Canvas.

    /bin/bash
    > echo "Cops and Robbers"; #Testing, testing 1 2 3
    Segmentation Fault
    > echp "Cops and Robbers"; #Huh?
    Cops and Robbers

[Try it online!](https://tio.run/##S07MK0ss/v9fPykzTz8psTiDy04hNTkjX0HJOb@gWCExL0UhKD8pKbWoWMlaQTkktbgkMy9dR6EEwlAwVDBSMOYKTk3PTc0rSSzJzM9TcEsszSmBmFKA3RSP0gx7LnSJ//8B)