Codin User
@CodinUser
Check out my YouTube channel https://www.youtube.com/channel/UCReO0uCesJkcwl5xxxXhcRQ
Check out my github
https://github.com/PyHubs
Hello everyone!
I will like to present, PyGet - PIP GUI, PyGet is an GUI for pip, allowing you to execute pip commands, view installed modules and ins
Python
WTSLang
So yeah. I need help creating a programing language. I have done some amount of the work, but yeah
See baisc.wts for an basic idea line by lin
fuzzyastrocat Creating a programming language is a big project. Step 1 is to not expect that you'll get anything done quickly! Instead, take it slow and do things step by step.
The link @DynamicSquid provided (craftinginterpreters.com) is a great link to get started. It is done in Java (first half) and C (second half), but you can probably transpose it to Python if you're willing to do a little extra. Since that resource includes all the details of what designing a language entails, I'll mention how to a2 years ago
DynamicSquid Nice question!
For your first step, try making a calculator. It should take in user input as a string like this (you don't have to worry about brackets for now):
5 +8 / 2*5 + 14
And return an array like this:
[5] [+] [8] [/] [2] [*] [5] [+] [14]
Then from that array, "parse" it to get a single value (remember order of operations matters!):
39
That was my first step when I made my language. Hope that helps :)2 years ago
Hello everyone
So I have now made a new project called WTerminal, its meant to be an "PowerShell/cmd/bash alternative with external app support'
The
Python
1
PyShell DEV 1.6A basic Python Intepreter
22
8
1
CodinUser PyShell 1.6
PyShell is a very basic, yet awesome python shell, that is based on the default python interpreter. However, PyShell comes with syntax highlighting.
PyShell is also bundled with our terminal program. WTerminal (which is still in aplha)All features that come to the stand alone version of PyShell will also come to its WTerminal version :)
New features
- auto pip installation
To make the program easier, now our program will pip install everytime you launch and clear the screen before returning to PyShell
2 years ago
PyShell is an very basic python interpreter, it is a SINGLE-LINE (so it wont support multi line statements) but it comes with syntax highlighting whic
Python
WTerminal
A powerfull Powershell and CMD alternitve, it has a similar concept on the now discontinued, Workspace-CLI, except it does not include a boo
Python