File tree 1 file changed +36
-0
lines changed
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ AppType=StandardJava
2
+ Build1=Default,b4j.example
3
+ Group=Default Group
4
+ Library1=jcore
5
+ NumberOfFiles=0
6
+ NumberOfLibraries=1
7
+ NumberOfModules=0
8
+ Version=7
9
+ @EndOfDesignText@
10
+ ' Non-UI application (console application)
11
+ #Region Project Notes
12
+ ' B4J HowTo Project - Non-UI HelloWorld
13
+ ' Output "Hello World" to the console
14
+ ' From commandline run: java -jar helloworld.jar
15
+ ' @autor Robert W.B. Linn
16
+ ' @since 20150501
17
+ #End Region
18
+
19
+ #Region ToDo
20
+ #End Region
21
+
22
+ #Region Project Attributes
23
+ #End Region
24
+
25
+ Sub Process_Globals
26
+ 'No declarations
27
+ End Sub
28
+
29
+ Sub AppStart (Args() As String)
30
+ Log("App Startet " & DateTime.Date(DateTime.Now) & " " & DateTime.Time(DateTime.Now))
31
+ Log($"${DateTime.Date(DateTime.Now)}"$)
32
+ Log("Hello World")
33
+ 'Stop the application
34
+ ExitApplication2(0)
35
+ End Sub
36
+
You can’t perform that action at this time.
0 commit comments