programming-language tag

23 questions


1 answers
113 views
0
In programming, about referring to yourself in the definition part.

Hello.I understand that many of the programming languages can refer to themselves while defining a function or class.Recursive Function.# Python3sum = 0;def factorial(a, n) if (n==1): return 1 else: ...


1 answers
99 views
0
Is there a way to make a code editor in Python?

I'm making a programming language because I'm bored.The grammar used in the programming language is different from the grammar on the market, so can you make a code editor?It's okay to simply be a Cod...


1 answers
79 views
0
Python Lexer

I'm making the string Lexer, but I don't know how to make it, and the letters after the last space don't come out, but I'm curious and don't know how to fix it.The goal is to categorize the string in ...

« - 3 -

© 2024 OneMinuteCode. All rights reserved.