Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
teaching
nswi170
web
Commits
70fccf1e
Commit
70fccf1e
authored
Apr 19, 2021
by
Tomas Faltin
Browse files
adding `Strings` into table with differences
parent
df3f7b0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
index.html
View file @
70fccf1e
...
...
@@ -407,7 +407,11 @@ $(document).ready(function(){
<td>
Emulator (Arduino) initilization (e.g., pinMode)
<b>
MUST
</b>
be called in setup.
Early emulator initialization (e.g., in a constructor of a global object) causes a signal and your program is terminated.
</td>
</tr>
<tr>
<td>
Unsupported type
<code>
String
</code></td>
<td><code>
String stringOne = "Hello String";
</code></td>
<td>
Use standard C-strings instead, i.e.,
<code>
const char *stringOne = "Hello String";
</code></td>
</tr>
</table>
</div>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment