Skip to content

Commit d81b86e

Browse files
authored
rename PDLparse to lower and redo readme
1 parent 09593b9 commit d81b86e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

PDL/example.pdl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
# https://code.visualstudio.com/api/language-extensions/syntax-highlight-guide
44

55
food {
6-
pizza = 'Peporoni' # pizza variable within food class
7-
bread = 'rye' # bread variable within food class
8-
cheese = 'mozzarella' # cheese variable within food class
6+
str(pizza = 'Peporoni') # pizza variable within food class
7+
str(bread = 'rye') # bread variable within food class
8+
str(cheese = 'mozzarella') # cheese variable within food class
99
}
1010

1111
class2 {
12-
variable = '1N'
12+
int(variable = '1N')
1313
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Python-Developer-Library
1+
# Python Data Library
22

3-
The Python Developer's Library is a python library file and parser, To create a `.pdl` file simply follow this [wiki guide](https://github.com/itzCozi/Python-Developer-Library/wiki). PDL files are marked by the file extension `.pdl` and can be parsed within a python program using the pdlparse pypi package. The file's syntax is made to be simple and easy to learn it follows very pythonic rules to ease developers into the language. WRITE MORE LATER
3+
The Python Data Library is a python library file and parser pypi-package, To create a `.pdl` file simply follow this [wiki guide](https://github.com/itzCozi/Python-Developer-Library/wiki). PDL files are marked by the file extension `.pdl` and can be parsed within a python program using the pdlparse pypi package. The file's syntax is made to be simple and easy to learn it follows very pythonic rules to ease developers into the language. `pdl-hl` is the VSCode extension made for pdl files it offers custom syntax highlighting for python data librarys depending on your color theme.
44

55
https://code.visualstudio.com/docs/getstarted/locales

0 commit comments

Comments
 (0)