diff --git a/definitions/standard/runtime_definition/function/control-audit.md b/definitions/standard/runtime_definition/function/control-audit.md new file mode 100644 index 0000000..5d9252b --- /dev/null +++ b/definitions/standard/runtime_definition/function/control-audit.md @@ -0,0 +1,4 @@ +# 05.08.2025 + +## Added +- return \ No newline at end of file diff --git a/definitions/standard/runtime_definition/function/control.md b/definitions/standard/runtime_definition/function/control.md new file mode 100644 index 0000000..f21155a --- /dev/null +++ b/definitions/standard/runtime_definition/function/control.md @@ -0,0 +1,62 @@ +## return +Will return the given value. + +```json +{ + "runtime_name": "std::control::return", + "runtime_parameter_definitions": [ + { + "data_type_identifier": { + "type": { + "GenericKey": "R" + } + }, + "runtime_name": "value", + "name": [ + { + "code": "en-US", + "content": "Return Value" + } + ], + "description": [ + { + "code": "en-US", + "content": "The value to be returned." + } + ], + "documentation": [ + { + "code": "en-US", + "content": "This value will be returned to the upper context." + } + ] + } + ], + "return_type_identifier": { + "type": { + "GenericKey": "R" + } + }, + "name": [ + { + "code": "en-US", + "content": "Return" + } + ], + "description": [ + { + "code": "en-US", + "content": "Returns the specified value to the upper context." + } + ], + "documentation": [ + { + "code": "en-US", + "content": "Returns the specified value to the upper context." + } + ], + "generic_keys": ["R"], + "deprecation_message": [], + "throws_error": false +} +```