Skip to content

Commit 99f8057

Browse files
authored
Create PyCalc
1 parent 54a3b1e commit 99f8057

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Projects/PyCalc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# PyCalc
2+
# Created by Nathan R (Mosrod) https://github.com/Mosrod
3+
4+
# Imports
5+
6+
# Variables
7+
8+
# Definitions
9+
def add():
10+
x = input("Num1: ")
11+
y = input("Num2: ")
12+
z = x+y
13+
14+
# Code
15+

0 commit comments

Comments
 (0)