10 lines
199 B
Text
10 lines
199 B
Text
|
|
#Ifdef __FB_WIN32__
|
||
|
|
' === WINDOWS ===
|
||
|
|
Shell "start /max https://www.yahoo.com"
|
||
|
|
#Else
|
||
|
|
' === LINUX ===
|
||
|
|
Shell "xdg-open https://www.yahoo.com"
|
||
|
|
#EndIf
|
||
|
|
|
||
|
|
Print "Yahoo! search interface..."
|