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
//! `pseudo-lang` — name reserved for the [Pseudo] language.
//!
//! The Pseudo language is currently in pre-v1 development. The actual
//! Rust runtime + compiler bindings will be published to crates.io when
//! v1.0 Ludens ships and Vladimir Dukelic personally tests + approves
//! the working version.
//!
//! Until then:
//!
//! - **Source**: <https://github.com/siliconyouth/pseudo>
//! - **Marketing**: <https://pseudo-lang.com> (lands at v1.0)
//! - **Spec**: in the GitHub repo under `docs/superpowers/specs/`
//! - **Compatibility matrix**: `COMPATIBILITY.md` in the repo
//! - **Standards conformance**: `CONFORMANCE.md` in the repo
//!
//! License: MIT OR Apache-2.0
//! Owner: Vladimir Dukelic <vladimir@dukelic.com>
//!
//! [Pseudo]: https://github.com/siliconyouth/pseudo
/// Reserved-name marker. Always `true` in this placeholder release.
pub const RESERVED: bool = true;
/// Pre-v1 development status.
pub const STATUS: &str = "pre-v1";
/// Marketing site URL (lands at v1.0).
pub const HOMEPAGE: &str = "https://pseudo-lang.com";
/// Upstream repository.
pub const REPOSITORY: &str = "https://github.com/siliconyouth/pseudo";
/// Print the reserved-name notice.