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
Transfers control to another operating system program. Control returns to the .bas immediately and the system command is executed parallel and independent to SmallBASIC. File name is case sensitive in Linux.
5
+
Transfers control to the program`file`. Control returns to the calling bas-file immediately and the program is executed parallel and independent to SmallBASIC. File name is case sensitive in Linux. Enclose the string `file` with quotation marks to start a program with parameters.
6
6
7
7
See `run` for starting an external program and wait until program finished execution.
8
8
9
+
### Example 1
10
+
9
11
```
10
12
' Select your editor for testing
11
13
exec "kate" ' Editor KDE
@@ -15,3 +17,9 @@ exec "kate" ' Editor KDE
15
17
print "This line will be printed immediately without delay"
0 commit comments