Skip to content

Deepak5j/Custom_Interpreter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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