An open API service indexing awesome lists of open source software.

https://github.com/nonopichy/pichy

My Programming Language.
https://github.com/nonopichy/pichy

experience java language new

Last synced: 6 months ago
JSON representation

My Programming Language.

Awesome Lists containing this project

README

          

# Pichy 1.0-BETA
- My Programming Language.
- ~~Relax, I'm going to change this code a lot... I know it's messed up.~~
## Define variable
```
@variable-name = value;
```
- > @variable-name = text; (string)
- > @variable-name = 1; (double)

## Effects

### Display in console
```
print value;
```
- > print @variable;

### Open alert box
```
alertbox value;
```
- > alertbox @variable;

### Open website
```
website value;
```
- > website @variable;

## Returns

### Get math PI
```
3.1415;
```
- > ->@3.1415;

### Get address machine
```
machine-ip;
```
- > ->@machine-ip;

### Code from SRC

https://github.com/Nonopichy/Pichy/blob/master/test.pichy#L1-L6