September 2017 Update

This commit is contained in:
Ingy döt Net 2017-09-23 10:01:46 +02:00
parent bba7bfd280
commit ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions

View file

@ -0,0 +1 @@
other = 42

View file

@ -0,0 +1,3 @@
' Include a file
INCLUDE "other.bac"
PRINT other

View file

@ -0,0 +1 @@
USING: vocaba vocabb... ;

View file

@ -0,0 +1,6 @@
Public Sub Form_Open()
Dim sFile As String
sFile = File.Load("FileToLoad")
End

View file

@ -0,0 +1 @@
$INCLUDE "ishelllink.inc"

View file

@ -0,0 +1 @@
$USE "libraries\\mylib.lib"

View file

@ -0,0 +1 @@
Success=LOADRESOURCE(ID,Type,Variable)

View file

@ -0,0 +1,12 @@
@RESCURSOR
@RESBITMAP
@RESICON
@RESMENU
@RESDIALOG
@RESSTRING
@RESACCEL
@RESDATA
@RESMESSAGETABLE
@RESGROUPCURSOR
@RESGROUPICON
@RESVERSION

View file

@ -0,0 +1 @@
fun f() = println("f called")

View file

@ -0,0 +1,7 @@
// version 1.1.2
import package1.f // import f from package `package1`
fun main(args: Array<String>) {
f() // invoke f without qualification
}

View file

@ -0,0 +1 @@
include(filename)

View file

@ -0,0 +1 @@
::requires "regex.cls"

View file

@ -0,0 +1 @@
$include.txt

View file

@ -0,0 +1,8 @@
Include "D:\include\pad.vbs"
Wscript.Echo lpad(12,14,"-")
Sub Include (file)
dim fso: set fso = CreateObject("Scripting.FileSystemObject")
if fso.FileExists(file) then ExecuteGlobal fso.OpenTextFile(file).ReadAll
End Sub

View file

@ -0,0 +1 @@
<script id="Connections" language="VBScript" src="D:\include\ConnectionStrings.vbs"/>

View file

@ -0,0 +1 @@
include 'MyFile.INC'

View file

@ -0,0 +1 @@
%include "MyFile.INC"

View file

@ -0,0 +1 @@
include(vm.h.zkl, compiler.h.zkl, zkl.h.zkl, opcode.h.zkl);