Deepak5j / Custom_Interpreter

Sololearn Weekly_Contest https://code.sololearn.com/c8W7nrLCc72v/#py

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom_Interpreter

Sololearn Weekly_Contest

ScreenShot1

TASK

Implement a custom interpreter in any SoloLearn-supported programming language that reads and executes a given source code corresponding to the rules defined above

Example Source Code:

svar a;
a = 44;
svar b;
b = 31;
svar str;
str = "hello";
print str;
print a + b;

output

hello
75

About

Sololearn Weekly_Contest https://code.sololearn.com/c8W7nrLCc72v/#py

License:MIT License


Languages

Language:Python 100.0%