this post was submitted on 16 Aug 2023
9 points (100.0% liked)

Trivia

236 readers
1 users here now

A place to quiz others with trivia questions related to the instance!

Please keep questions on the topic of trivia. If you have a question for how to do something please post it in a community relevant to what youre doing or [email protected]

Guidelines

Credits

Logo base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS
9
Guess the Language: #9 (programming.dev)
submitted 1 year ago* (last edited 1 year ago) by Ategon to c/trivia
 
import std.stdio;

void main()
{
    writeln("Enter a number:");
    int input;
    readf("%d", &input);
    writeln("Factorial:", factorial(input));
}

int factorial(int n)
{
    if (n <= 1)
        return 1;
    return n * factorial(n - 1);
}

Options: Vala, Crystal, D, Nim

Use the following link to guess an answer, answer + results posted in 12 hours. (If you say the answer in the replies please put it in spoiler tags)

https://strawpoll.com/Qrgebk7PKZp

all 8 comments
sorted by: hot top controversial new old
[–] Ategon 2 points 1 year ago (1 children)

Click to show answerThe answer is D! 9/14 people guessed it right (64%)

[–] [email protected] 0 points 1 year ago

I made a slightly educated guess as on of the few languages I know is C and D is an attempt at being a successor.

[–] [email protected] 2 points 1 year ago (1 children)

Wow never heard of Vala. I choose that one.

[–] [email protected] 0 points 1 year ago* (last edited 1 year ago) (1 children)

You had me until <. Is that a posting issue or actually part of the code?

Seeing as the screenshot has a < it's fairly obvious it's just lemmy.

[–] Ategon 1 points 1 year ago* (last edited 1 year ago)

Yeah thats a bug in lemmy-ui. It doesnt parse both less than symbols and ampersands properly in code blocks which can mess with code (< &) (&lt; &amp;)