What does repl stand for?
This probably is a dumb question, but what exactly does REPL stand for?
RohilPatel (1535)
It sure is Coder100
nahu (27)
I don't Think it stands for anything
Coder100 (17111)
it actually does (read eval print loop) @nahu
Ask coding questions
This probably is a dumb question, but what exactly does REPL stand for?
It sure is Coder100
I don't Think it stands for anything
it actually does (read eval print loop) @nahu
Repl stands for Read Eval Print Loop.
@TheDrone7 Ah, ok. Do you have any idea why it is named this way or what it means?
@Coder100 https://en.wikipedia.org/wiki/Read–eval–print_loop might clear your queries.
@Coder100 it's a program that allows you to interactively code, which is what Repl.it is about (except it's a lot more feature complete). @Kognise built one in Scheme that works. Try hitting run and entering something like
(print 'hello)
https://repl.it/@kognise/REPL
@amasad ah, ok. Thanks!
@TheDrone7 Is that what is means!