Skip to content

Commit cd1efee

Browse files
authored
Placeholder for the B4J tag
1 parent 64770df commit cd1efee

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

helloworld.b4j

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+

0 commit comments

Comments
 (0)