File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ With OPEN you can also open a network connection. Depending on the kind of conne
2828| URL | ` open "http://api.duckduckgo.com/?q=Cars&format=json" as #1 `
2929| Image | ` open "http://img2.wikia.nocookie.net/__cb20150113215904/farmville/images/9/92/Lumberjack_Gnome-icon.png" as #1 ` |
3030| Socket | ` open "SOCL:192.168.178.76:8080" as #1 ` |
31- | Serial Port (RS232) | ` open "COM1:19200" as # 1 ` |
31+ | Serial Port (RS232) | ` open "COM1:19200" as #1 ` |
3232
3333More information with examples can be found in the article "Network programming".
3434
@@ -83,7 +83,7 @@ close #1
8383### Example 3: Open a COM port (RS232)
8484
8585```
86- open "COM1:19200" as # 1 ' Open COM1 with 19200 bauds
86+ open "COM1:19200" as #1 ' Open COM1 with 19200 bauds
8787
8888while (eof(1)) ' Loop until connection is closed
8989
You can’t perform that action at this time.
0 commit comments