ruchy 4.1.1

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// LANG-COMP-001: Basic Syntax - Comments
// Demonstrates: Line and block comments

// This is a line comment
42

/* This is a
   block comment */
100

let x = 200 // Trailing comment
x