Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
/*!
Common RISP is a LISP language implementation that operates embedded in Rust code.

## Get Started

The code below uses LISP format to calculate and print a numeric value.
```
fn main() {
    common_risp::compile!(
        (print 99)
        (print (+ 1 2 (* 3 4) 5))
    );
}
```

The execution result is as follows:
```bash
 Compiling common_risp v0.0.0 (/home/myyrakle/Codes/Rust/common_risp/common_risp)
    Finished dev [unoptimized + debuginfo] target(s) in 0.10s
     Running `target/debug/common_risp`
99
20
```

## Operators

RISP provides +, -, *, /, rem, mod as the basic arithmetic operators.
The behavior is almost identical to LISP.
```
fn main() {
    common_risp::compile!(
        (print (+ 1 2 3 4 5))
        (print (- 10 20))
        (print (* 10 20))
        (print (/ 40 20))
        (print (rem 10 3))
        (print (mod 10 3))
    );
}
```

Comparison operators are provided as <, >, <=, >=, =, and /=.
```
fn main() {
    common_risp::compile!(
        (print (< 10 20))
        (print (< 10 20 30))
        (print (> 10 20))
        (print (<= 10 20))
        (print (>= 10 20))
        (print (= 10 20))
        (print (/= 10 20))
    );
}
```

Logical operators and, or, and not are provided.
```
fn main() {
    common_risp::compile!(
        (print (and true false))
        (print (or true false))
        (print (not true))
    );
}
```


## Variables

RISP provides variable declaration functionality through the defvar and defparameter functions.

```
fn main() {
    common_risp::compile!(
        (defvar x 10)
        (defparameter y 20)
        (print (+ x y))
    );
}
```

And, you can change the value of a variable through setq.

```
fn main() {
    common_risp::compile!(
        (defvar x 10)
        (defparameter y 20)
        (print (+ x y))
        (setq x 30)
        (setq y 40)
        (print (+ x y))
    );
}
```

## Function
RISP provides function declaration functionality through the defun function.

```
fn main() {
    common_risp::compile!(
        (defun add (x:i32 y:i32) i32 (+ x y))
        (print (add 10 20))
    );
}
```
The difference between RISP and LISP is that parameter types and return types were added for type stability.
However, if there is no return type, it can be omitted.

```
fn main() {
    common_risp::compile!(
        (defun print_add (x:i32 y:i32) (print (+ x y)))
        (print_add 10 20)
    );
}
```

## IF
RISP provides an IF statement.


```
fn main() {
    common_risp::compile!(
        (defvar x 10)
        (defvar y 20)
        (if (< x y) (print "x is less than y") (print "x is greater than or equal to y"))
    );
}
```

## Interoperability

Variables and functions defined within RISP code can also be used outside RISP code.
```
fn main() {
    common_risp::compile!(
        (defvar x 10)
        (defun add (x:i32 y:i32) i32 (+ x y))
    );

    assert_eq!(x, 10);
    assert_eq!(add(10, 20), 30);
}
```

Also, the opposite is possible.
```
fn main() {
    let x = 10;

    common_risp::compile!(
        (defun add (x:i32 y:i32) i32 (+ x y))
        (print (add x 20))
    );
}
```
*/

#[allow(unused_imports)]
use crate as common_risp;

/// Compile RISP code and execute it.
pub use risp_macro::compile;

/// There is no need to use it outside of RISP code.
///
/// Print a value.
pub fn print<T: std::fmt::Display>(value: T) {
    println!("{}", value);
}

/// There is no need to use it outside of RISP code.
///
/// Performs modulo operations on numbers.
pub fn mod_<T>(lhs: T, rhs: T) -> T
where
    T: std::ops::Rem<Output = T>
        + std::ops::Add<Output = T>
        + std::ops::AddAssign
        + std::cmp::PartialOrd<T>
        + std::default::Default
        + Copy,
{
    let mut result = lhs % rhs;
    if result < T::default() {
        result += rhs;
    }
    result
}

#[cfg(test)]
mod test_arithmetic {
    use super::*;

    #[test]
    fn test_add_expression() {
        let result = compile!(
            (+ 10 20)
        );

        assert_eq!(result, 30);
    }

    #[test]
    fn test_subtract_expression() {
        let result = compile!(
            (- 10 20)
        );

        assert_eq!(result, -10);
    }

    #[test]
    fn test_multiply_expression() {
        let result = compile!(
            (* 10 20)
        );

        assert_eq!(result, 200);
    }

    #[test]
    fn test_divide_expression() {
        let result = compile!(
            (/ 40 20)
        );

        assert_eq!(result, 2);
    }

    #[test]
    fn test_add_subtract_expression() {
        let result = compile!(
            (+ 10 (- 20 5))
        );

        assert_eq!(result, 25);
    }

    #[test]
    fn test_rem_expression() {
        let result = compile!(
            (rem 10 3)
        );

        assert_eq!(result, 1);

        let result = compile!(
            (rem -1 5)
        );

        assert_eq!(result, -1);
    }

    #[test]
    fn test_mod_expression() {
        let result = compile!(
            (mod 10 3)
        );

        assert_eq!(result, 1);

        let result = compile!(
            (mod -1 5)
        );

        assert_eq!(result, 4);
    }
}

#[cfg(test)]
mod test_comparison {
    use super::*;

    #[test]
    fn test_less_than_expression() {
        let result = compile!(
            (< 10 20)
        );

        assert_eq!(result, true);
    }

    #[test]
    fn test_greater_than_expression() {
        let result = compile!(
            (> 10 20)
        );

        assert_eq!(result, false);
    }

    #[test]
    fn test_less_than_or_equal_to_expression() {
        let result = compile!(
            (<= 10 20)
        );

        assert_eq!(result, true);
    }

    #[test]
    fn test_greater_than_or_equal_to_expression() {
        let result = compile!(
            (>= 10 20)
        );

        assert_eq!(result, false);
    }

    #[test]
    fn test_equal_to_expression() {
        let result = compile!(
            (= 10 20)
        );

        assert_eq!(result, false);
    }

    #[test]
    fn test_not_equal_to_expression() {
        let result = compile!(
            (/= 10 20)
        );

        assert_eq!(result, true);
    }

    #[test]
    fn test_less_than_expression_three_args() {
        let result = compile!(
            (< 10 20 30)
        );

        assert_eq!(result, true);
    }
}

#[cfg(test)]
mod test_boolean {
    use super::*;

    #[test]
    fn test_and_expression() {
        let result = compile!(
            (and true false)
        );

        assert_eq!(result, false);
    }

    #[test]
    fn test_or_expression() {
        let result = compile!(
            (or true false)
        );

        assert_eq!(result, true);
    }

    #[test]
    fn test_not_expression() {
        let result = compile!(
            (not true)
        );

        assert_eq!(result, false);
    }
}

#[cfg(test)]
mod test_variables {
    use super::*;

    #[test]
    fn test_defvar() {
        compile!(
            (defvar x 10)
        );

        assert_eq!(x, 10);
    }

    #[test]
    fn test_defparameter() {
        compile!(
            (defparameter x 10)
        );

        assert_eq!(x, 10);
    }

    #[test]
    fn test_setq() {
        compile!(
            (defparameter x 10)
        );

        assert_eq!(x, 10);

        compile!(
            (setq x 20)
        );

        assert_eq!(x, 20);
    }
}

#[cfg(test)]
mod test_functions {
    use super::*;

    #[test]
    fn test_defun() {
        compile!(
            (defun add (x:i32 y:i32) i32 (+ x y))
        );

        assert_eq!(add(10, 20), 30);
    }

    #[test]
    fn test_defun_with_no_return_type() {
        compile!(
            (defun add () (print "Hello, World!"))
        );
    }

    #[test]
    fn test_defun_with_no_args() {
        compile!(
            (defun add () i32 (+ 10 20))
        );

        assert_eq!(add(), 30);
    }

    #[test]
    fn test_defun_with_multiline() {
        compile!(
            (defun add () i32 (defvar x 10) (defvar y 20) (+ x y))
        );

        assert_eq!(add(), 30);
    }
}

#[cfg(test)]
mod test_scope {
    use super::*;

    #[test]
    fn test_scope() {
        mod foo {
            pub fn add(lhs: i32, rhs: i32) -> i32 {
                lhs + rhs
            }
        }

        let result = compile!(
            (foo::add 10 20)
        );

        assert_eq!(result, 30);
    }
}

#[cfg(test)]
mod test_if {
    use super::*;

    #[test]
    fn test_if() {
        let result = compile!(
            (if true 10 20)
        );

        assert_eq!(result, 10);
    }

    #[test]
    fn test_if_false() {
        let result = compile!(
            (if false 10 20)
        );

        assert_eq!(result, 20);
    }
}