egglang 0.2.0__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. {egglang-0.2.0 → egglang-0.2.1}/PKG-INFO +2 -2
  2. {egglang-0.2.0 → egglang-0.2.1}/README.md +1 -1
  3. {egglang-0.2.0 → egglang-0.2.1}/pyproject.toml +1 -1
  4. {egglang-0.2.0 → egglang-0.2.1}/src/SHELL/main.py +1 -1
  5. {egglang-0.2.0 → egglang-0.2.1}/src/egglang.egg-info/PKG-INFO +2 -2
  6. {egglang-0.2.0 → egglang-0.2.1}/LICENSE +0 -0
  7. {egglang-0.2.0 → egglang-0.2.1}/setup.cfg +0 -0
  8. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Errors/__init__.py +0 -0
  9. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Errors/cli.py +0 -0
  10. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Errors/fun.py +0 -0
  11. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Errors/loop.py +0 -0
  12. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Errors/runtime.py +0 -0
  13. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Errors/syntex.py +0 -0
  14. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Interpreter/__init__.py +0 -0
  15. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Interpreter/builtin.py +0 -0
  16. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Interpreter/env.py +0 -0
  17. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Interpreter/main.py +0 -0
  18. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Lexer/__init__.py +0 -0
  19. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Lexer/main.py +0 -0
  20. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Lexer/tokens.py +0 -0
  21. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/__init__.py +0 -0
  22. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/main.py +0 -0
  23. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/nodes/__init__.py +0 -0
  24. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/nodes/base.py +0 -0
  25. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/nodes/opr.py +0 -0
  26. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/nodes/programe.py +0 -0
  27. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/nodes/statements.py +0 -0
  28. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/Parser/nodes/var.py +0 -0
  29. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/ToolKit/__init__.py +0 -0
  30. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/ToolKit/dataops.py +0 -0
  31. {egglang-0.2.0 → egglang-0.2.1}/src/INTERPRETER/__init__.py +0 -0
  32. {egglang-0.2.0 → egglang-0.2.1}/src/SHELL/__init__.py +0 -0
  33. {egglang-0.2.0 → egglang-0.2.1}/src/egglang.egg-info/SOURCES.txt +0 -0
  34. {egglang-0.2.0 → egglang-0.2.1}/src/egglang.egg-info/dependency_links.txt +0 -0
  35. {egglang-0.2.0 → egglang-0.2.1}/src/egglang.egg-info/entry_points.txt +0 -0
  36. {egglang-0.2.0 → egglang-0.2.1}/src/egglang.egg-info/requires.txt +0 -0
  37. {egglang-0.2.0 → egglang-0.2.1}/src/egglang.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: egglang
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A command line tool written in Python
5
5
  Author: Adib
6
6
  Requires-Python: >=3.8
@@ -20,7 +20,7 @@ Dynamic: license-file
20
20
  ╚══════╝ ╚═════╝ ╚═════╝
21
21
  ```
22
22
 
23
- ### A programming language I am building from scratch to understand how programming languages actually work.
23
+ ### A simple basic programming language built with pure python without any module or library.
24
24
 
25
25
 
26
26
  <p>
@@ -9,7 +9,7 @@
9
9
  ╚══════╝ ╚═════╝ ╚═════╝
10
10
  ```
11
11
 
12
- ### A programming language I am building from scratch to understand how programming languages actually work.
12
+ ### A simple basic programming language built with pure python without any module or library.
13
13
 
14
14
 
15
15
  <p>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "egglang"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "A command line tool written in Python"
9
9
  authors = [
10
10
  {name = "Adib"}
@@ -20,7 +20,7 @@ def fuck(v:bool=False, version:bool=False):
20
20
  ███████╗╚██████╔╝╚██████╔╝
21
21
  ╚══════╝ ╚═════╝ ╚═════╝
22
22
  """)
23
- print("V 0.2.0")
23
+ print("V 0.2.1")
24
24
 
25
25
 
26
26
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: egglang
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A command line tool written in Python
5
5
  Author: Adib
6
6
  Requires-Python: >=3.8
@@ -20,7 +20,7 @@ Dynamic: license-file
20
20
  ╚══════╝ ╚═════╝ ╚═════╝
21
21
  ```
22
22
 
23
- ### A programming language I am building from scratch to understand how programming languages actually work.
23
+ ### A simple basic programming language built with pure python without any module or library.
24
24
 
25
25
 
26
26
  <p>
File without changes
File without changes
File without changes