Skip to content

Commit

Permalink
Merge pull request #553 from denisjackman/DJ2024
Browse files Browse the repository at this point in the history
daily commit
  • Loading branch information
denisjackman authored Jun 8, 2024
2 parents 860daa4 + e26da9b commit 1a37360
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/current/puzzle.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ def puzzle_foo(a, b, *args, **kwargs):
return a + b + sum(args) + sum(kwargs.values())


def puzzle_func(a=1, b=2, c=3):
''' func '''
return a * b * c


def main():
''' main '''
print("[=] Puzzle Play Start")
print(f"[-] func: {puzzle_func(5, c=4)}")
print(f"[-] foo: {puzzle_foo(1, 2, 3, 4, x=5, y=6)}")
print("[=] Puzzle Play Done.")

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1a37360

Please sign in to comment.