in reply to Recommendations for fun programming languages ?

hmm ... I think you should rather think in terms of programming paradigms to broaden your horizon than "fun languages".

Fun languages are a matter of fashion and hypes, but paradigms prevail.

Perl is a multi paradigm language, which I enjoy a lot (and frustrates others)

Larry created a kind of "Frankenstein's Monster" (tongue in cheek) by sewing together elements of C, bash, awk, sed and Lisp, among others, this led to quick success because ppl coming from those languages quickly felt comfortable.

You can try using Perl from these different angles to approach other languages.

For Functional programming: Higher Order Perl comes to mind. From there you can have a look at LISP (or Scheme to be more specific)

If you don't like Lisp's syntax, you might wanna have a look at Haskell.

Of course there are more languages which are outside the paradigms covered by Perl, like Forth, Erlang or Prolog.

edit

The book Seven languages in seven weeks may also be of interest for you, tho I would switch Io with JS.

update

The books covers most of what I've already mentioned, here my 2022 take on them

update

DISCLAIMER: I'm not proficient in most mentioned languages, my short characterizations are far from being complete.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

  • Comment on Re: Recommendations for fun programming languages ?

Replies are listed 'Best First'.
Re^2: Recommendations for fun programming languages ?
by Jenda (Abbot) on Feb 28, 2022 at 23:38 UTC

    It's a shame (Concurrent) Clean did not catch up instead of Haskel. Its uniqueness typing is a concept much easier to grasp than all that monad mumbo jumbo.

    Jenda
    1984 was supposed to be a warning,
    not a manual!

Re^2: Recommendations for fun programming languages ?
by rnaeye (Friar) on Mar 19, 2022 at 23:28 UTC

    Thank you!