Hello world/Graphical: Difference between revisions

Content deleted Content added
Kennypete (talk | contribs)
Added Vim Script solution
Kennypete (talk | contribs)
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}}==