Skip to content

Commit b571240

Browse files
authored
Merge pull request #9 from Puskar-Roy/dev
fix : typo
2 parents 0aac338 + 67bd7ca commit b571240

File tree

14 files changed

+21
-5
lines changed

14 files changed

+21
-5
lines changed

.env.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
PRINT_COMMAND="Your Print Command!"
2-
VARIABLE_DECLARE="Your Variable declaration Command!"
2+
VARIABLE_DECLARE="Your Variable declaration Command!"
3+

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
name: DuckLang
1+
name: DuckLang

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
venv
22
.env
3+
34
__pycache__/
45
*.pyc

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151

5252
## 🛠️ Prerequisites
5353

54+
5455
- [Python](https://nodejs.org/) installed on your machine 🐍
5556
- [Git](https://git-scm.com/) installed on your machine 🐙
5657

docs/Rules.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
## KeyWords
22

33
- For Print -> ```quack``` (eg. quack Hello World )
4+

lib/syntax.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
var_command = os.getenv("VARIABLE_DECLARE", "UNKNOWN")
99

1010

11+
1112
syntax = {
1213
"name": name,
1314
"PRINT_COMMAND": print_command,

main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77

8-
# Test code
98
source_code = '''
109
quack("Hello World")
1110
duck my_int = 42

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
python-dotenv==1.0.1
2+
3+

scripts/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
def printName(values):
2+
return values
3+
4+

setup.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/bash
22

3-
43
detect_os() {
54
case "$(uname -s)" in
65
Linux*) echo "Linux";;

0 commit comments

Comments
 (0)