Forscape
sligh
Forscape | sligh | |
---|---|---|
21 | 8 | |
57 | 10 | |
- | - | |
5.3 | 7.9 | |
about 1 year ago | about 1 year ago | |
C++ | OCaml | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Forscape
- Forscape – A Language and Editor for Scientific Computation
-
Why Wolfram uses square brackets for function calls
And if you like mathematical languages, you should check out Forscape :)
-
What's the best way to get my language stress tested?
You can use the free GitHub runners to execute regression tests on Linux, Windows, and Mac. I recommend testing with 32bit compilation as well as 64bit- it has a way of smoking out bugs. You could take a look at the GitHub actions on my Forscape repo in the .github folder, although it's probably not the most idiomatic runner scripting, but it is a C++ project like yours.
-
Word Processor from scratch WYSIWYG with Web Assembly
When I was developing a typesetting text editor for Forscape, I struggled to get traction until stumbling on the following plan: 1) Implement the document data structure and get it rendering to the screen 2) Support non-mutating interactions, such as clicking to move the text cursor, selecting, copying, etcetera 3) Support mutating interactions, such as keyboard input, deleting, and pasting. You'll probably use the Command pattern to support undo/redo of mutations
-
Which phases/stages does your programming language use?
The project is Forscape, although the language part is made a bit complicated because a goal of the project is creating an editor that supports typeset code with IDE interaction
-
[Weekly] What is everybody working on? Share your progress, discoveries, tips and tricks!
Finally adding multi-file support to Forscape. The frontend UI aspects are completed and I'm quite happy with the result. The app is Unicode heavy and QString's UTF-16 encoding is an annoyance; I would much prefer if Qt relied on std::string even. But the signal/slot mechanism lets you achieve some complicated behaviour with minimal complexity, and Qt looks great.
-
Build Qt Project w/GitHub Actions
Here's an example from a project. The first step installs Qt, the second step clones my repo on the runner, then a bit more setup with Conan, then building and running.
-
C++ Show and Tell - November 2022
I've been working on the Key CAS project (Imgur Screenshot), CAS being an acronym for Computer Algebra System, and "Key" a judiciously chosen title. This was my third time attempting CAS- this iteration was a huge improvement, but I still find it to be a damn hard problem. The GUI comes from the open source project Forscape, a scientific computing environment written in C++.
-
What Operators Do You WISH Programming Languages Had? [Discussion]
It gets fun when you go beyond flat symbols and start supporting 2D notation, like fractions and matrices. Probably not worth the hassle for most things, but I think it makes matrix expressions more compact with better readability.
-
What Are You Working On? August 29, 2022
I've been working on a mathematical programming language, Forscape. Currently it's entirely numerical, but I'm building a CAS separately which I hope to use in the language.
sligh
-
Do transpilers just use a lot of string manipulation and concatenation to output the target language?
But, you still seem hung up on this, so here’s actual code: https://github.com/amw-zero/sligh/blob/main/lib/codegen.ml.
-
Thoughts on the Rascal meta-programming language
Of course. Here was the first incarnation: https://github.com/amw-zero/sligh. It has a decent overview of the idea in the readme. To sum it up here, the idea is: have a language built around model-driven development and model-based testing, where you write a simple model of an application, and the implementation and model-based tests are compiled for you. I wrote about the overall model-based testing strategy here. This idea comes from self-certifying compilers that produce proofs of their correctness such as Cogent, but we drop the formality requirement and use property-based testing to compare the implementation and model.
-
What modern and mature language does both general purpose and data persistence ?
Honorable mention - I’m working on a language with similar goals: Sligh, and I’ve written about why I think it’s such a compelling idea before as well too.
-
April 2022 monthly "What are you working on?" thread
In Sligh, I spent most of the last month introducing a new intermediate representation to make tier splitting (choosing if code should live on the client or server) easier. My goal was to enable derived data, as in a model that queries other models for its data and combines them by processing them in memory. I've been using the example of a personal finance application, so imagine:
-
A list of new budding programming languages and their interesting features?
The language that I work on is Sligh, and it's out of the bulleted list because it's nowhere near as mature as any of those that I listed, and I'm more of a verification enthusiast vs. expert. Almost all of the ideas in it are borrowed from somewhere else, but I think the one quasi-unique idea is it allows you to write a pure logical description / specification of an application, and it generates full-stack web application code from that.
-
Has anyone tried Pest (parser) and Inkwell (LLVM library) with Rust? Are there any good projects on GitHub using this combo?
I’m currently using Pest, though I wouldn’t exactly recommend my compiler as a ‘good example’ just yet because I’m prototyping and just churning code out.
-
March 2022 monthly "What are you working on?" thread
Sligh
-
February 2022 monthly "What are you working on?" thread
So tactically it’s currently a source-to-source compiler, where in the source language (my language) you denote the system state transitions, i.e. by writing create!, update!, etc, and those get compiled to corresponding client and server code in the target language (JS for now, but hoping to support WebAssembly in the future). Heres an example program. The compiler source is there too. I’m hacking it together right now, so it’s not my finest work :D
What are some alternatives?
schmu - programming language experiment
awesome-programming-languages - The list of awesome programming languages that you might be interested in.
xvm - Ecstasy and XVM
urweb - The Ur/Web programming language
boba - A general purpose statically-typed concatenative programming language.
tailspin-v0 - A programming language with extreme data-pattern matching and data-declarative syntax, hopefully different enough to be interesting
Argon - Argon programming language
list-exp - Regular expression-like syntax for list operations [Moved to: https://github.com/phenax/elxr]
awesome-low-level-programming-languages - A curated list of low level programming languages (i.e. suitable for OS and game programming)
ShnooTalk - ShnooTalk is a new programming language
MLStyle.jl - Julia functional programming infrastructures and metaprogramming facilities
tulip - A Tiny, Untyped, Lazy, Interpreted, Pure language