# Chatting Area! Have fun! (Part 1)

**URL:** https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740
**Category:** Show & Tell
**Created:** [June 14, 2021, 9:12pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740 "2021-06-14T21:12:05Z")
**Posts on this page:** 20
**Page:** 491

<div class="post-metadata">

### Author: ![Sword\_Studios](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/sword_studios/32/35216_2.png) [@Sword\_Studios](https://forum.makecode.com/u/Sword_Studios)
#### Post date: [September 19, 2026, 7:48pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10044 "2026-09-19T19:48:49Z")

</div>

Oo wait let me try

❤ - Like

👍 - Yes/Me too

😆 - XD

😮 - _gasp!_

🎉 - yippee!!

:duck: - 👏 or happy

:snake: - 😡 or disagree or HOW DARE YOU

---

<div class="post-metadata">

### Author: ![D1v1deByZer0872](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/d1v1debyzer0872/32/29016_2.png) [@D1v1deByZer0872](https://forum.makecode.com/u/D1v1deByZer0872)
#### Post date: [September 19, 2026, 7:52pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10045 "2026-09-19T19:52:46Z")

</div>

I think i use break. I use it to stop a repeat # of times block if a condition is met(like the flappy bird falling into the void after hitting an object)

---

<div class="post-metadata">

### Author: ![not\_a\_lemon](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/not_a_lemon/32/35289_2.png) [@not\_a\_lemon](https://forum.makecode.com/u/not_a_lemon)
#### Post date: [September 19, 2026, 7:54pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10046 "2026-09-19T19:54:11Z")

</div>

> [@Sword\_Studios](#):
>
> @Tsist!  
> How do these things work?  
> I NEED TO KNOWWWW

I use them in Javascript mostly

`break` is used in a switch/case statement to specify the end of the case or whatever, like this:

```auto
let var = randint(0,10)
switch(var) {
    case 0:
        //run code here if var == 0
        break
    case 1:
        //run code for var == 1
        break
    //etc.

```

switch/case is basically an if statement, but because the condition doesn’t enclose its code in brackets ({}) you have to use `break` or it will run all the conditions’ code.

`continue` is used to skip out of a loop (like a for loop for example) so you can stop running it early, like this:

```auto
let var = randint(0,10)
let returnNum = 0

for (let i = 0; i < 10; i++) {
    if (i == var) {
        //Found the value of Var, so stop running the extra code
        returnNum = i
        continue
    }
}

console.log("var = " + returnNum)

```

If for example var is only 2, then it’s not optimal to run this loop another 8 times when you’ve already found the value, so you’d use `continue` to exit the function early. In this example it doesn’t really matter (and you could just log var initially anyway) but for more code-heavy calculations and stuff you don’t want to run the same thing over and over if you don’t need to.

---

<div class="post-metadata">

### Author: ![not\_a\_lemon](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/not_a_lemon/32/35289_2.png) [@not\_a\_lemon](https://forum.makecode.com/u/not_a_lemon)
#### Post date: [September 19, 2026, 7:54pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10047 "2026-09-19T19:54:14Z")

</div>

They’re not talking about Celeste, they’re talking about a game called Haiku the Robot

---

<div class="post-metadata">

### Author: ![VoxelMaster64](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/voxelmaster64/32/32075_2.png) [@VoxelMaster64](https://forum.makecode.com/u/VoxelMaster64)
#### Post date: [September 19, 2026, 9:26pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10048 "2026-09-19T21:26:30Z")

</div>

oh ye also break is for switch statements but that’s js only

---

<div class="post-metadata">

### Author: ![engineer703](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/engineer703/32/35135_2.png) [@engineer703](https://forum.makecode.com/u/engineer703)
#### Post date: [September 19, 2026, 9:27pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10049 "2026-09-19T21:27:03Z")

</div>

I don’t really play Celeste classic, I just speedrun normal Celeste

---

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 19, 2026, 9:27pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10050 "2026-09-19T21:27:27Z")

</div>

@Richard will the next big jam happen in November or October

---

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 19, 2026, 9:27pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10051 "2026-09-19T21:27:40Z")

</div>

There’s probably not even enough global arcade game jam topics in total to create this many solutions much less enough so one person get its

---

<div class="post-metadata">

### Author: ![Air](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/air/32/26413_2.png) [@Air](https://forum.makecode.com/u/Air)
#### Post date: [September 19, 2026, 9:27pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10052 "2026-09-19T21:27:47Z")

</div>

shhhhhhhhhhhhhhhh (makecode this is a sentece and if you say otherwise i dont know what will happen)

---

<div class="post-metadata">

### Author: ![Sword\_Studios](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/sword_studios/32/35216_2.png) [@Sword\_Studios](https://forum.makecode.com/u/Sword_Studios)
#### Post date: [September 19, 2026, 9:27pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10053 "2026-09-19T21:27:56Z")

</div>

It’s almost embarrassing how many replies I got on this

---

<div class="post-metadata">

### Author: ![1978monkeynutze](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/1978monkeynutze/32/33979_2.png) [@1978monkeynutze](https://forum.makecode.com/u/1978monkeynutze)
#### Post date: [September 19, 2026, 9:30pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10054 "2026-09-19T21:30:22Z")

</div>

mm not a lemon sounds like @Not_a_Potato ! are you his long lost brother!!!?

---

<div class="post-metadata">

### Author: ![VoxelMaster64](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/voxelmaster64/32/32075_2.png) [@VoxelMaster64](https://forum.makecode.com/u/VoxelMaster64)
#### Post date: [September 19, 2026, 9:30pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10055 "2026-09-19T21:30:26Z")

</div>

your “continue” example is incorrect

---

<div class="post-metadata">

### Author: ![1978monkeynutze](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/1978monkeynutze/32/33979_2.png) [@1978monkeynutze](https://forum.makecode.com/u/1978monkeynutze)
#### Post date: [September 20, 2026, 2:49am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10056 "2026-09-20T02:49:26Z")

</div>

should I change my pfp to something new agian…

_Poll ([view on site](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10056))_

---

<div class="post-metadata">

### Author: ![Astro](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/astro/32/35479_2.png) [@Astro](https://forum.makecode.com/u/Astro)
#### Post date: [September 20, 2026, 2:49am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10057 "2026-09-20T02:49:30Z")

</div>

Woofy

---

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 20, 2026, 2:49am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10058 "2026-09-20T02:49:43Z")

</div>

Idk why but I feel MakeCode forums are actually at their peak rn. I think it’s gonna grow for a while cause of the scratch ai thing but will plateau for like 5 months and then fall off I want to see if this prediction holds up so let’s see

---

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 20, 2026, 2:52am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10059 "2026-09-20T02:52:00Z")

</div>

![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/c/9/c91b353aa0ad0ffb81b0af7931cc90b124174169.png)

Does an invite link need to last for multiple millenia

---

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 20, 2026, 2:52am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10060 "2026-09-20T02:52:24Z")

</div>

Byw for all unenlightened people you can use `<sentence>`

And it will allow you to post without showing up

---

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 20, 2026, 2:52am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10061 "2026-09-20T02:52:46Z")

</div>

![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/0/a/0afbd8b69261b27861fb5ec76dc063ea8169e4a5.png)

@Hulahoop you need to lock in also btw who is @AGuyThatCodes bro I have never even seen them

---

<div class="post-metadata">

### Author: ![1978monkeynutze](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/1978monkeynutze/32/33979_2.png) [@1978monkeynutze](https://forum.makecode.com/u/1978monkeynutze)
#### Post date: [September 20, 2026, 2:53am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10062 "2026-09-20T02:53:13Z")

</div>

hey @Luke whaddya think of my pixal art?

 ![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/1/a/1a4d5a69401e534e85223127ce204e1698511206.png)

---

<div class="post-metadata">

### Author: ![BotWarrior](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/botwarrior/32/25328_2.png) [@BotWarrior](https://forum.makecode.com/u/BotWarrior)
#### Post date: [September 20, 2026, 2:55am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/10063 "2026-09-20T02:55:04Z")

</div>

Well you should try it if you haven’t, always good to see the original idea for a game you enjoy (kinda like playing LoZ LttP after playing BotW or TotK)

[Previous page](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740.md?page=490)

[Next page](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740.md?page=492)
