Hello world/Text: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 2:
 
=Text Terminal=
==bash==
 
==[[BASIC]]==
'''Interpreter:''' [[Bourne Again Shell]] (bash)
 
#!/bin/bash
echo "Goodbye World!"
 
 
==BASIC==
 
'''Compiler:''' [[BASICA]]
Line 17 ⟶ 10:
 
 
==[[C]]==
 
'''Compiler Suite:''' [[GCC]] 4.0.1
Line 31 ⟶ 24:
 
 
==[[C++]]==
 
'''Compiler Suite:''' [[GCC]] 4.1.2, [[Visual Studio]] 2005
Line 46 ⟶ 39:
}
 
==[[Lua]]==
 
'''Interpreter:''' [[Lua]] 5.1.1
Line 58 ⟶ 51:
In Lua, parentheses are optional for function calls when there is only one argument and this argument is either a string or a table constructor.
 
==[[Pascal]]==
'''Compiler:''' [[Free Pascal]]
 
Line 66 ⟶ 59:
end.
 
==[[Perl]]==
 
'''Interpreter:''' [[Perl]] 5.8.8
Line 72 ⟶ 65:
#!/usr/bin/perl -w
print "Goodbye, World!\n";</nowiki></pre>
 
==[[UNIX Shell]]==
 
'''Interpreter:''' [[Bourne Again Shell]] (bash)
 
#!/bin/bash
echo "Goodbye World!"
 
=GUI=
==[[Visual Basic .NET]]==
'''Compiler Suite:''' [[Visual Studio]] 2005
Module GoodbyeWorld