Core Backend (.enlng)
General-purpose algorithms, collections, math, OOP, exceptions, and native standard I/O.
type enlng
set word to "madam"
set reversed to ""
set i to 0
while i less than length of word:
set reversed to word[i] plus reversed
set i to i plus 1
if word is equal to reversed:
display "The word '" + word + "' is a palindrome!"
else:
display "not palindrome"