โ 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
| Concept | PewPew word |
|---|---|
| whole number | int |
| decimal | float |
| text | str |
| true / false | bool |
| true | true |
| false | false |
| nothing | null |
| if | if |
| else | else |
| while-loop | while |
| repeat | repeat |
| times | times |
| function | func |
| return | return |
| break | break |
| continue | continue |
| array / list | array |
| map / object | map |
| for-each | foreach |
| in | in |
| import | import |
| type of | typeof |
| length / count | len |
| assert | assert |
| shout (uppercase) | shout |
Error tone
Even mistakes stay in character:
Error [line 3]: Division by zero!