Structorica Wiki:Sandbox: Difference between revisions

From Structorica Wiki
Jump to navigation Jump to search
Created page with "Sandbox"
 
No edit summary
Tag: Manual revert
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
Sandbox
Sandbox
<syntaxhighlight lang="json">
{
  "name": "example",
  "version": "1.0.0",
  "dependencies": {
    "lodash": "^4.17.0"
  }
}
</syntaxhighlight>
<syntaxhighlight lang="cpp">
#include <iostream>
int main() {
    std::cout << "Hello, World!" << std::endl;
    return 0;
}
</syntaxhighlight>
<syntaxhighlight lang="toml">
[package]
name = "my-package"
version = "1.0.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
</syntaxhighlight>

Latest revision as of 15:01, 14 January 2026

Sandbox

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

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


[package]
name = "my-package"
version = "1.0.0"
edition = "2021"

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