PEWPEW.EXE
โ—„ all skins
๐Ÿง‘โ€๐Ÿ’ผ

PewPew

Same engine. Boardroom vocabulary. int / func / return.

The professional skin maps PewPew onto conventional keywords โ€” int, float, if, while, func, return, print โ€” so the exact same engine reads like a mainstream language. Proof the personality is a skin, not a limitation.

Sample programs

hello

func greet(str name) {
    print("hello " + name)
}
greet("world")

loop

int i = 1
while (i <= 3) {
    print("line " + i)
    i = i + 1
}

Vocabulary

ConceptPewPew word
whole numberint
decimalfloat
textstr
true / falsebool
truetrue
falsefalse
nothingnull
ifif
elseelse
while-loopwhile
repeatrepeat
timestimes
functionfunc
returnreturn
printprint
breakbreak
continuecontinue
array / listarray
map / objectmap
for-eachforeach
inin
importimport
type oftypeof
length / countlen
assertassert
shout (uppercase)shout

Error tone

Even mistakes stay in character:

Error [line 3]: Division by zero!