Which language is easiest for graphics

Which language is easiest to make repls with graphics with?

  • Java
  • HTML/JS/CSS
  • Pygame
  • Pygame Zero
  • Kaboom
  • Other (commment it)

0 voters

3 Likes

All you need to do with HTML is type <p>Hello, World!</p> for a graphic

2 Likes

I meant a graphic game I didn’t just mean text

<canvas></canvas>
<script>
	const canvas = document.querySelector("canvas");
	const ctx = canvas.getContext("2d");
	
	ctx.fillStyle = "red";
	ctx.fillRect(10, 10, canvas.width - 20, canvas.height - 20);
</script>
3 Likes

In that case I would suggest starting with this Pygame Zero Tutorial by forking it

The flappae brick just crashed into my window. Now I gotta call the window repair company to fix it.

1 Like

Kaboom, Pygame, and Pygame Zero are not languages. They’re libraries.

5 Likes