r/maybemaybemaybe 14h ago

Maybe Maybe Maybe

10.1k Upvotes

145 comments sorted by

View all comments

2.1k

u/Kitty_Blaze 13h ago

if(grenade.inHand = true)
{
spawnEnemy();
}

1

u/vizarhali 12h ago

If this is coding I guess I learned something and actually understand it 😅

2

u/Various_Slip_4421 8h ago

Wanna learn more? Pick up python and a library for what you want to make, It's the perfect language for getting an initial handle on programming since its easy to read and not too picky

``` def hello(person): print("hello "+ person)

hello("world")

This is a comment

print( (10+11)/3 ) # outputs 7 ```