-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPROJECT_LANG_1.brs
More file actions
20 lines (20 loc) · 1017 Bytes
/
PROJECT_LANG_1.brs
File metadata and controls
20 lines (20 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
' Start of script
Function projectLanguageFileOne(msgPort As Object, userVariables As Object, bsp as Object)
print "Project language file 1"
print "For: SNU/2D/ProgrammingTools/IDE/BrightScript"
print "About: "
print "I decided to make BrightScript the main project language file for this project (SNU / 2D / Programming Tools / IDE / BrightScript) as this is a BrightScript IDE, and it needs its main language to be represented here."
' Output:
' Project language file 1
' For: SNU/2D/ProgrammingTools/IDE/BrightScript
' About:
' I decided to make BrightScript the main project language file for this project (SNU / 2D / Programming Tools / IDE / BrightScript) as this is a BrightScript IDE, and it needs its main language to be represented here.
End Function
return projectLanguageFileOne();
return 0;
End
' File info
' File type: BrightScript source file (*.brs)
' File version: 1 (2022, Thursday, September 22nd at 9:39 pm PST)
' Line count (including blank lines and compiler line): 21
' End of script