Skip to content

Commit

Permalink
change version
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-develop committed Mar 31, 2022
1 parent 968daf8 commit 6616c01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion example.noug
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# This file was made in nougaro alpha 0.2 version.
# This file was made in nougaro alpha 0.3 version.

# This is a comment
# Basics :
# Print
print("Hello, world!")
print()

# Mathematical operators
print(1+1)
Expand Down Expand Up @@ -100,6 +101,7 @@ print(list_ * [8, 9, 10])
print(get(list_, -3))
print(list_ / -3)
print(list_(-3))
print(get(*[list_, -3])) # another syntax. *[list_, -3] returns list_, -3 in this case.

print(max(list_, True))
print(min(list_, True))
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"noug_version": "0.2",
"noug_version": "0.3",
"phase": "alpha",
"inherit": true
}

0 comments on commit 6616c01

Please sign in to comment.