Structorica Wiki:Sandbox

From Structorica Wiki
Revision as of 08:51, 13 January 2026 by Ivan (talk | contribs)
Jump to navigation Jump to search

Sandbox

{
  "name": "example",
  "version": "1.0.0",
  "dependencies": {
    "lodash": "^4.17.0"
  }
}
#include <iostream>

int main() {
    std::cout << "Hello, World!" << std::endl;
    return 0;
}
</source>


<syntaxhighlight lang="toml">
[package]
name = "my-package"
version = "1.0.0"
edition = "2021"

[dependencies]
serde = { version = "1.0", features = ["derive"] }