Which language is easiest to make repls with graphics with?
- Java
- HTML/JS/CSS
- Pygame
- Pygame Zero
- Kaboom
- Other (commment it)
0 voters
Which language is easiest to make repls with graphics with?
0 voters
All you need to do with HTML is type <p>Hello, World!</p>
for a graphic
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>
The flappae brick just crashed into my window. Now I gotta call the window repair company to fix it.
Kaboom, Pygame, and Pygame Zero are not languages. They’re libraries.