You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cpp2/common.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ As always, `main` is the entry point of the program. For example:
10
10
11
11
- One parameter of implicit type named `args`:  **`#!cpp main: (args) /*etc.*/`**
12
12
13
-
- The type of `args` cannot be explicitly specified. It is always `cpp2::args_t`, which behaves similarly to a `#!cpp const std::array<std::string_view>`.
13
+
- The type of `args` cannot be explicitly specified. It is always `cpp2::args`, which behaves similarly to a `#!cpp const std::array<std::string_view>`.
14
14
15
15
- Using `args` performs zero heap allocations. Every `string_view` is directly bound to the string storage provided by host environment.
0 commit comments