Commit
·
3eafb49
1
Parent(s):
3a7bbac
Update app.py
Browse files
app.py
CHANGED
@@ -11,10 +11,11 @@ def run_command(command):
|
|
11 |
result = error.decode('utf-8')
|
12 |
return result
|
13 |
|
14 |
-
def run_code(
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
18 |
|
19 |
if lang == 'python':
|
20 |
try:
|
|
|
11 |
result = error.decode('utf-8')
|
12 |
return result
|
13 |
|
14 |
+
def run_code(command):
|
15 |
+
print(command)
|
16 |
+
if command is not None:
|
17 |
+
code = command.split('@')[0]
|
18 |
+
lang = command.split('@')[1]
|
19 |
|
20 |
if lang == 'python':
|
21 |
try:
|