Skip to content

Latest commit

ย 

History

History
38 lines (28 loc) ยท 1.17 KB

File metadata and controls

38 lines (28 loc) ยท 1.17 KB


snake


๐Ÿง‘โ€๐Ÿ’ป About Us

Newton School of Technology โ€” SWC (Student Web Club) is a community of dreamers, coders, and creators from Bangalore, building cool tech, hosting hackathons, and helping students grow into real-world developers.

๐Ÿš€ We believe code is art, and open source is the gallery.


๐ŸŽฎ Easter Egg: Find the Bug ๐Ÿž

Try to find the hidden bug in this code ๐Ÿ‘‡

Click to play
def future():
    dream = "build the next big thing"
    while True:
        code = input(">>> ")
        if code == "bug":
            print("๐Ÿž You found it! Congrats, developer!")
            break
        else:
            print("Keep coding...")

future()