online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
import pygame pygame.init() screen = pygame.display.set_mode((400, 300)) pygame.display.set_caption("Rounded Square") running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False screen.fill((255, 255, 255)) # white background # Draw rounded square rect = pygame.Rect(100, 80, 200, 200) # x, y, width, height pygame.draw.rect(screen, (0, 128, 255), rect, border_radius=30) pygame.display.flip() pygame.quit()

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue