Nicolas Winkler 6 lat temu
rodzic
commit
01c2818213
2 zmienionych plików z 5 dodań i 3 usunięć
  1. 5 2
      src/test.qlw
  2. 0 1
      vim/syntax/qlow.vim

+ 5 - 2
src/test.qlw

@@ -3,8 +3,8 @@ fast_fibonacci(i: Integer): Integer do
     b: Integer
     temp: Integer
     count: Integer
-    count := i
-    a := 0
+    count := i 
+    a := 0 // asdfgadf
     b := 1
     while count != 0 do
         temp := a
@@ -17,6 +17,9 @@ end
 
 extern printint(x: Integer)
 
+class Aalala
+
+end
 
 /*
 bignumbers do

+ 0 - 1
vim/syntax/qlow.vim

@@ -13,7 +13,6 @@ endif
 syn keyword keywordy class struct do end if while return extern as new
 syn keyword typey Integer Boolean
 syn keyword typey String Char 
-syn keyword typey Int8 Int16 Int32 Int64 Int128 UInt8 UInt16 UInt32 UInt64 UInt128
 syn keyword typey Float32 Float64