« on: November 09, 2010, 10:53:35 AM »
Introduction:The forums now support automatic syntax highlighting for the following programming languages when used inside of a bbc code block element. See below for examples of some basic hello world apps.
Supported Languages 1C
AVR Assembler
Apache
Axapta
Bash
C#
C++
CMake
CSS
DOS .bat
Delphi
Django
HTML, XML
Ini
Java
Javascript
Lisp
Lua
MEL
PHP
Parser3
Perl
Python
Python profile
RenderMan
Ruby
SQL
Scala
Smalltalk
TeX
VBScript
VHDL
diff
nginx
Examples:Javaclass myfirstjavaprog
{
public static void main(String args[])
{
System.out.println("Hello World!");
}
}
Delphi
program ConsApp;
{$APPTYPE CONSOLE}
uses
SysUtils;
begin
// Delphi's version of a simple hello world app.
writeln('Hello World');
writeln('Press the ENTER key to stop the program');
readln;
end.
Bash Script#!/bin/bash
# Lets declare a STRING variable
STRING="Hello World"
#Using echo command to print value of a variable on screen
echo $STRING
Visual Basic' A "Hello, World!" program in Visual Basic.
Module Hello
Sub Main()
MsgBox("Hello, World!") ' Display message on computer screen.
End Sub
End Module
JavaScript<script type="text/javascript">
document.write('<b>Hello World</b>');
</script>
Tesla[1up]
« Last Edit: November 09, 2010, 05:15:37 PM by Tesla[1up] »

Logged
"May I suggest the footing of your ass" Red Forman