From c21b761c55fff456c8aaa3f3454bc788a28548cd Mon Sep 17 00:00:00 2001 From: Apoorva Ranade Date: Wed, 24 Feb 2021 10:48:45 +0530 Subject: [PATCH] Updating tests yet again --- src/test/data/pa1/student_contributed/good.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/test/data/pa1/student_contributed/good.py b/src/test/data/pa1/student_contributed/good.py index 4c01c88..88f20ca 100644 --- a/src/test/data/pa1/student_contributed/good.py +++ b/src/test/data/pa1/student_contributed/good.py @@ -74,4 +74,15 @@ Here I am" """ This is a multi-line comment. -""" \ No newline at end of file +""" + + +def get_stones(name:str)->str: + color=['Red','Blue'] + stones=['Mind','Soul'] + def map_name(nm:str)->str: + return stones[color.index(nm)] + return map_name(name) + +stone="Blue" +print(get_stones(stone)) \ No newline at end of file