# 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:** 446

<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: [August 11, 2026, 5:02pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9137 "2026-08-11T17:02:54Z")

</div>

Yo can’t code in MakeCode c or c++ without using GitHub thingies that are hard to understand

---

<div class="post-metadata">

### Author: ![kirbob](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/kirbob/32/34880_2.png) [@kirbob](https://forum.makecode.com/u/kirbob)
#### Post date: [August 11, 2026, 5:02pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9138 "2026-08-11T17:02:56Z")

</div>

wait yall are learning? im stuck on B L O C K S

---

<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: [August 11, 2026, 8:59pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9139 "2026-08-11T20:59:26Z")

</div>

```cpp
#include <stdio.h>

int main() {
    int numbers[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
    int len = sizeof(numbers) / sizeof(numbers[0]);

    int sum = 0;
    for (int i = 0; i < len; i++) {
        sum += numbers[i];
    }

    printf("Average: %.1f\n", (double)sum / len);

    return 0;
}

```

I think that fixed it? I don’t have a compiler with me at the moment.

---

<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: [August 11, 2026, 8:59pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9140 "2026-08-11T20:59:36Z")

</div>

yeah, that’s fine, blocks can make some pretty good games, but if you want to go to higher coding, then I suggest learning some sort of typescript.

---

<div class="post-metadata">

### Author: ![xInsqne1](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/xinsqne1/32/34060_2.png) [@xInsqne1](https://forum.makecode.com/u/xInsqne1)
#### Post date: [August 11, 2026, 9:00pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9141 "2026-08-11T21:00:07Z")

</div>

It would seem so… but who says it can’t be at a later date? I’ve gotta have hope! 😆

---

<div class="post-metadata">

### Author: ![wiz\_superstar](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/wiz_superstar/32/34269_2.png) [@wiz\_superstar](https://forum.makecode.com/u/wiz_superstar)
#### Post date: [August 11, 2026, 9:00pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9142 "2026-08-11T21:00:29Z")

</div>

I believe I see the problem; it’s something I didn’t catch at first either 😭  
Looking at the `for` loop, I noticed the slightest typo

```auto
...
for (i = 0; i < len; i++) {
    sum + Numbers[i];
}
...

```

What I believe happened is that you forgot to also _set_ the sum variable as well as increase it. Here’s a quick fix:

```auto
...
for (i = 0; i < len; i++) {
    sum += Numbers[i];
}
...

```

Hope this helped!!

---

<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: [August 11, 2026, 9:01pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9143 "2026-08-11T21:01:26Z")

</div>

I don’t know python and the one time I tried it was somehow too hard for me even though it’s easier 🤣

---

<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: [August 11, 2026, 9:01pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9144 "2026-08-11T21:01:30Z")

</div>

then use a custom compiler! (I use Visual Studio (NOT Visual studio code) )

---

<div class="post-metadata">

### Author: ![CoderBunnyGirl](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/coderbunnygirl/32/34875_2.png) [@CoderBunnyGirl](https://forum.makecode.com/u/CoderBunnyGirl)
#### Post date: [August 11, 2026, 9:01pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9145 "2026-08-11T21:01:55Z")

</div>

What it should be

 ![Untitled](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/1/b/1b05d3c3d0411fd43fc909a678a68d931ec8705f.png)

---

<div class="post-metadata">

### Author: ![Player\_246](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/player_246/32/31875_2.png) [@Player\_246](https://forum.makecode.com/u/Player_246)
#### Post date: [August 11, 2026, 9:03pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9146 "2026-08-11T21:03:44Z")

</div>

I’m back!!!

 ![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/d/2/d2f7c97a121501f8dea7555875c53cc33f14c8e6.png)

---

<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: [August 11, 2026, 9:04pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9147 "2026-08-11T21:04:45Z")

</div>

lol I’m working on learning MakeCode ts

---

<div class="post-metadata">

### Author: ![JtSpeedRun](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/jtspeedrun/32/33167_2.png) [@JtSpeedRun](https://forum.makecode.com/u/JtSpeedRun)
#### Post date: [August 12, 2026, 2:21am UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9148 "2026-08-12T02:21:27Z")

</div>

![1000015514](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/b/f/bfaa5134e35744db71bbc5cc8193125a580bd0de.jpeg)

Best of luck with your work

---

<div class="post-metadata">

### Author: ![Spike](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/spike/32/33316_2.png) [@Spike](https://forum.makecode.com/u/Spike)
#### Post date: [August 12, 2026, 5:43pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9149 "2026-08-12T17:43:55Z")

</div>

I hate having to replay a whole section of my game just to see one part​😔

---

<div class="post-metadata">

### Author: ![BlueYoshi507](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/blueyoshi507/32/32630_2.png) [@BlueYoshi507](https://forum.makecode.com/u/BlueYoshi507)
#### Post date: [August 12, 2026, 6:16pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9150 "2026-08-12T18:16:23Z")

</div>

_PFFFFVVVVVVV_

 ![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/d/9/d9e4002a3264fa8a7aa56f8c1c0d9ddcf60fe107.png)  
WHAAAATTT?!!! I FEEL IT IS LIKE A BETTER VERSION OF MINE!!!

---

<div class="post-metadata">

### Author: ![Tsist](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/tsist/32/20588_2.png) [@Tsist](https://forum.makecode.com/u/Tsist)
#### Post date: [August 12, 2026, 6:18pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9151 "2026-08-12T18:18:12Z")

</div>

> **[Fiberglass - Tsist OST+](https://arcade.makecode.com/S79649-88804-55232-56268)**
>
> Made with ❤️ in Microsoft MakeCode Arcade.

Duration - 5:28

---

<div class="post-metadata">

### Author: ![Cybercube](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/cybercube/32/34628_2.png) [@Cybercube](https://forum.makecode.com/u/Cybercube)
#### Post date: [August 12, 2026, 6:18pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9152 "2026-08-12T18:18:52Z")

</div>

thank you!

---

<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: [August 12, 2026, 6:19pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9153 "2026-08-12T18:19:47Z")

</div>

Just use functions and remove the less important functions like the loading and early stuff and then drag the area of the code directly into the start block

---

<div class="post-metadata">

### Author: ![Astronomicality22](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/astronomicality22/32/18365_2.png) [@Astronomicality22](https://forum.makecode.com/u/Astronomicality22)
#### Post date: [August 12, 2026, 6:23pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9154 "2026-08-12T18:23:08Z")

</div>

Yo guys I own a roll of unused, undeveloped, unexposed Fujichrome 35mm film

---

<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: [August 12, 2026, 10:12pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9155 "2026-08-12T22:12:33Z")

</div>

Bro comes out with the most random one liners ever

---

<div class="post-metadata">

### Author: ![wiz\_superstar](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/wiz_superstar/32/34269_2.png) [@wiz\_superstar](https://forum.makecode.com/u/wiz_superstar)
#### Post date: [August 12, 2026, 10:16pm UTC](https://forum.makecode.com/t/chatting-area-have-fun-part-1/8740/9156 "2026-08-12T22:16:03Z")

</div>

happy to help!

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

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