Jump to content

Hello world/Graphical: Difference between revisions

m
→‎{{header|Vim Script}}: changed lang attribute to "vim"
(Added Vim Script solution)
m (→‎{{header|Vim Script}}: changed lang attribute to "vim")
 
Line 4,217:
=={{header|Vim Script}}==
There are several ways to do this. From Normal mode, one way (which requires Vim version 8.2 with patch 1522) is:
<syntaxhighlight lang="vimscriptvim">
:call popup_notification("Hello world", {})
</syntaxhighlight>
 
Another way (which requires Vim version 9.0 with patch 337) is:
<syntaxhighlight lang="vimscriptvim">
:echow "Hello world"
</syntaxhighlight>
 
<small>'''NB:''' Neither of these will work with Neovim.'''</small>
 
=={{header|Visual Basic}}==
31

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.