RosettaCodeData/Task/Yahoo-search-interface/FreeBASIC/yahoo-search-interface.basic

10 lines
199 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
#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..."