~repos /plum

#treesitter#compiler#wasm

git clone https://pyrossh.dev/repos/plum.git

A statically typed, imperative programming language inspired by rust, python



website/src/content/docs/statements/if.md



---
title: If Statement
description: These are basic types
---
```py
if name == "Andreas"
printLn("What a nice name!")
else if name == "Pacman"
printLn("Game from the 80s")
else if name == ""
printLn("Don't you have a name?")
else
printLn("Boring name...")
```