~repos /plum
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 Statementdescription: These are basic types---
```pyif 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...")```