summaryrefslogtreecommitdiffhomepage
path: root/vala.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'vala.html.markdown')
-rwxr-xr-x[-rw-r--r--]vala.html.markdown28
1 files changed, 27 insertions, 1 deletions
diff --git a/vala.html.markdown b/vala.html.markdown
index 9a5215bb..b6cbeb98 100644..100755
--- a/vala.html.markdown
+++ b/vala.html.markdown
@@ -21,5 +21,31 @@ Comment */
* Documentation comment
*/
+/*
+Data Types
+*/
+
+// Vala supports the data types supported by most other programming languages.
+
+char character = 'a'
+unichar unicode_character = 'u' // 32-bit unicode character
+
+int i; // ints can also have guaranteed sizes (e.g. int64, uint64)
+uint j;
+
+long k;
+
+short l;
+ushort m;
+
+
+
+/*
+Basic Syntax
+*/
+
+// Like in C#, scope is defined using braces.
+// An object or reference is only valid between braces.
+
-``` \ No newline at end of file
+```