also I just realized that Brazil did NOT make a programming language entirely in Spanish and call it “Si” and that my professor was making a joke about C… god damn it
this post is probably too nieche but I feel like Lemmy is nerdy enough that enough people will get it lol
Maybe I’ll build an OS in Python just for the fun of it! Haha
deleted by creator
You just cannot do it, I’m afraid. Python is an interpreted language, and requires de CPython library to be translated into machine code so that it can then be run, but that requires an underlying OS that makes the calls. The closest thing would be micropython, which can be run inside the Linux kernel, but that’s about it. The only thing I can think of is using a custom compiler that would generate either C/C++ or assembly code from a Python script, and then compile it using a standard C/C++/assembly compiler.
So, there?
That is not the same as building an OS in Python hahaha
Well shoot! This is really interesting though. I’m not a programmer, but I think I understand the basics of this.
Guess they have to write a python compiler first then.