Language/website author here: nope. Just good old fashioned html, css, and a pinch of vanilla js just to get a few things working.
I had tried out making a forth a while back. It was not, in the end, as usable as I'd like. I thought something more in the vein of scheme might be useful (to me) and fun to work on. Some scheme features I think are tricky and not needed for beginners and I think somewhere along the line I started making this to be a beginner focused language that is easy to learn and hold in your head. I had a few people in my technology community in mind as people that it would be good for. In the end I really enjoyed coding in it, so have continued to work on it.
It is definitely not meant for wide usage, for anything other than just messing around having fun, etc. To be honest I am a little bummed it made its way to hacker news (I havent and wouldnt have posted it), as I really like my group of 6 users that I know and we all have fun contributing and coming up with ideas and cool use cases. I don't need it to grow or be used by a wider audience than the pubnix we all hang out on (rawtext.club).
That said, I'm glad you like the website! and if you like the lang that is nice too :-D
Slope is very easy to pickup. It is concise. It has simple and easy package manager. You do not need to learn huge tooling around it, etc.
You can quickly build a console or GUI app. You can write your modules and it's FOSS. I'd say that all this makes it an excellent small, hobby lang.
> Meta programming is still “trivial” (for the lack of a better word) in a lisp without using macros
is there not a whole class of problems that are not trivial if you cannot control evaluation of forms / expressions? this is one of the things (non-reader) macros provide.
“Trivial” is the wrong word, but it’s fairly known/common to write an embedded interpreter. The line between interpreting and just plain programming is very blurry in a lisp.
I have limited experience with lisps, and for me a smaller language, that is easy to pick up, works well. I can finally do things in a lisp, without having to struggle with the full breadth and depth of the bigger guys (and I do not have to install e.g. jvm on my machine :). So for me it is a graceful way to work in a paradigm that I long like, but I somehow could not make my way to.
I would agree. Simple and old school, but with a dash of modern features was what I was going for. I used Logo a good bit when I was young, so I can appreciate the comparison.
Check what it says about the hobby language - it is not meant to attract huge crowds, so it does not need to be 'respectable'.
For me it is good if it raises associations with Logo, though - as Logo was also providing way to computing for 'non-professionals' - thus keeping the fun and joy of computing.
I wonder why, in the examples, "filter" is colored pink like "if" but "not" is colored orange like a function call. I'd expect "filter" to be a function, and thus colored orange.
Because at one point filter was implemented as a special form in the interpreter rather than in the library. As such it was colored with special forms. That has changed and it is now in the library, but I have not gone into the highlight plugin to switch the colors as it is not a high priority.
>It is built for the joy of building something. It s built for fun, both in its coding and in coding with it. It is not the fastest language with the hottest features. It is not the most stable thing or the best tool for every or even any job. It likely will never be those things. If you use it and you get utility out of it I am happy about that: that is amazing and excites me! I genuinely believe slope to be a useful and fun language to use and I enjoy working on and in the language.
wow, lots of negativity and criticism in this thread for what is explicitly called out as a fun project (that’s what hobby means, linked in the language description on the front page): https://slope.colorfield.space/hobby.html
Creating a programming language, no matter how robust, is not a trivial endeavor—I’d rather celebrate the existence of this language and its pretty explicit posturing that it’s just for fun rather than criticize it immediately for its lack of utility.
Just flag the lame comments and write a comment about the thing rather than the comments about the thing. The thread will fix itself especially with better comments around.
Speaking for myself, I left out macros to make sure I'd make the base language good enough in regular use without them. It's a Lisp, macros are easy to add later. (That's what happened in the original Lisp.)
macros werent necessary for me and the language is for me. I can always add them later (as the other comments mention). Not having them makes things simpler and easier for those with less programming experience that don't need power features. Those that end up needing them can always move on to scheme, clojure, common lisp, etc.
Different standard library, different focus, similar-ish core interpreter. However, it doesnt need to be different. This was not built for folks other than me and a few friends to use (I didnt post it here on hacker news, and am not looking to "grow a userbase").
I am not prepared to make fun of this project, as other commenters have. It may or may not be a proper Scheme subset (it probably isn't). That said, it may have some use, by “hobbyists” (whatever that may mean, remember that Linus Torvalds originally called Linux a hobby), or even a wider audience. It may serve as a gateway drug to Scheme, Racket, and Common Lisp.
As for no macros, that does limit its appeal to Schemers, Racketeers, and Lispers. That said, while a crude define-macro implementation isn't that difficult, once you have an interpreter that can be run at compile time, Scheme define-syntax macros are quite difficult to implement properly. I can understand why they might have been left out.
Got any thoughts as to what spurred this project on?