Structorica Wiki:Sandbox: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary Tag: Manual revert |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 17: | Line 17: | ||
return 0; | return 0; | ||
} | } | ||
</ | </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"] }