blob: 76fc09f59b1089da9f3a851d1c9f2dbf0394f58f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Function Calls
## What is Juxtaposition?
In Baba Yaga you call functions by putting them next to each other.
```plaintext
/*
JavaScript: f(x, y)
Baba Yaga: f x y
*/
```
## Basic Examples
```plaintext
/* Simple function calls */
add 5 3; /* Instead of add(5, 3) */
multiply 4 7; /* Instead of multiply(4, 7) */
subtract 10 3; /* Instead of subtract(10, 3) */
/* Function calls with tables */
|