Skip to content

Commit

Permalink
now version 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hg0428 committed Dec 19, 2021
1 parent 9c30fc4 commit b1bf1d1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
Binary file modified __pycache__/functions.cpython-38.pyc
Binary file not shown.
Binary file modified __pycache__/stringtype.cpython-38.pyc
Binary file not shown.
8 changes: 5 additions & 3 deletions functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def dissable_function(name,
def clear(name):
os.system('clear')
print(
"Aardvark Version 0.7.4\nUse the help function for help.\n© Copyright 2020 PlasDev, hg0428, ZDev1\n"
"Aardvark Version 0.8.7\nUse the help function for help.\n© Copyright 2021 PlasDev, hg0428, ZDev1\n"
)


Expand All @@ -41,8 +41,10 @@ def file_size(name, file): #get the size of a file

@Aardvark.function("output") #
def output_function(name, toprint): #Output function
global end
print(toprint, end=end)
if toprint ==True or toprint==False:
toprint=str(toprint).lower()
global end
print(toprint, end=end)


@Aardvark.function("input")
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def parse_line(line, line_num):
global line_num
line_num = 0
print(
"Aardvark Version 0.8.0 BETA\nUse the help function for help.\n© Copyright 2020 PlasDev, hg0428, ZDev1\n"
"Aardvark Version 0.8.7 BETA\nUse the help function for help.\n© Copyright 2021 PlasDev, hg0428, ZDev1\n"
)
Aardvark.parse_line = parse_line
if len(sys.argv) == 1:
Expand Down
2 changes: 1 addition & 1 deletion stringtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def string_atindex(name, string, index):

@Aardvark.method("string", "lower")
def string_lowercase(name, string):
return string.lowe()
return string.lower()


@Aardvark.method("string", "upper")
Expand Down

0 comments on commit b1bf1d1

Please sign in to comment.