Iâd love to see something like this but designed to run on esp32 or raspberry pi 2530. Either can handle basic HDMI and USB. Or a little <$100 laptop with a 7â display.
Easy to think raspberry pi, but with a full Linux you wonât get that intrinsic understanding that you fully control the hardware, you never control the âbare metalâ unless you are a much more advanced user.
IMHO the feeling of not being in full control of your computing device is not a good starting point. Iâm very fortunate to have started out on my 8kb BASIC machine.
âA class or object is a map with a special __isa entry that points to the parent. This is set automatically when you use the new operator.
Shape = {"sides":0}
Square = new Shape
Square.sides = 4
x = new Square
x.sides // 4
â
So
- Shape is a map (it is created using the syntax defined earlier, using a literal string as key)
- Square is a class?
- x is an object?
Or is this language prototype based? If so, why mention the word âclassâ? If not, isnât it confusing to use ânew someMapâ to create a class and ânew someClassâ to create an object?
I also find it curious to see that division is defined on lists and strings. What would that mean?
It's so odd that the only nontrivial example code in the paper is completely buggy. The find longest common prefix function of a list of strings fails (try ["a", "bc", "ade"]).
Looks cool. I most enjoyed the zombies game someone uploaded on itch.io. One thing to note is that game speeds feel very fast to me. I barely did anything in the asteroids game and the others also seem to run quite fast. It could be just me.
pietjetoday at 11:10 AM
I wonder how hard it would be translate this to Dutch. I would like my kids to start experimenting but thatâs a bit impractical if they need to learn English first..
layer8today at 12:04 PM
Apparently itâs high-level only, i.e. no underlying machine instruction set or addressable memory.
__natty__today at 10:52 AM
Why not for 3 eur buy some basic arduino or other tiny hardware to tinker with and for another few eur, tiny i2c/oled display, wires and set of basic switches? You start programming with option to expand to the larger project in the future. You have constraints of real device, community is much larger and there are more learning resources.
neomechtoday at 1:00 PM
Shame there isn't a Raspberry Pi version available.
boundless88today at 11:07 AM
I think that's really cool. I wonder when this started development?
alex_xtoday at 10:29 AM
I wonder why all these easy-to-learn languages use indentation to denote scope, not something like curly braces. Isn't it actually harder to explain?
swayam_41today at 2:06 PM
really like the creativity, cool stuff
sibidharantoday at 12:09 PM
This feels nostalgic!
eliotthbyrnestoday at 11:11 AM
Ah the nostalgia
the_aftoday at 12:59 PM
Is this a similar project to the existing Pico8?
qseratoday at 10:36 AM
Only virtual? That is sad!
utopiahtoday at 3:15 PM
I don't get why this kind of projects need :
- a manual
- an installer
when you have Web pages can now
- be offline (PWA)
- be responsive and run on pretty much any device
- run pretty much anything thanks to WASM but anyway already have JS/HTML/CSS as bare minimum
- can have the instructions AND the runtime on the same page, on any device, instantly