[go: up one dir, main page]

rhai 0.18.3

Embedded scripting for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use rhai::{Engine, INT};

#[test]
fn test_comments() {
    let engine = Engine::new();

    assert!(engine
        .eval::<INT>("let x = 5; x // I am a single line comment, yay!")
        .is_ok());

    assert!(engine
        .eval::<INT>("let /* I am a multi-line comment, yay! */ x = 5; x")
        .is_ok());
}