Skip to content

Commit 390b6fc

Browse files
Merge pull request #24 from navinsubramani/productivity_tools
fixed the issue with creating empty string, this helps in testing the…
2 parents 2e2c9ad + d79dfc8 commit 390b6fc

File tree

10 files changed

+26
-1
lines changed

10 files changed

+26
-1
lines changed

LV scripting language.lvproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<Property Name="Bld_localDestDirType" Type="Str">relativeToProject</Property>
8181
<Property Name="Bld_modifyLibraryFile" Type="Bool">true</Property>
8282
<Property Name="Bld_previewCacheID" Type="Str">{0BDCB953-9C36-40D2-9846-A0AADBF962BB}</Property>
83-
<Property Name="Bld_version.build" Type="Int">10</Property>
83+
<Property Name="Bld_version.build" Type="Int">11</Property>
8484
<Property Name="Bld_version.major" Type="Int">1</Property>
8585
<Property Name="Destination[0].destName" Type="Str">LSL Script Editor.exe</Property>
8686
<Property Name="Destination[0].path" Type="Path">../builds/exe/LSL script editor/LSL Script Editor.exe</Property>

example/Basic Interface.vi

16 Bytes
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
print(4==4)
2+
print(4==5)
3+
print("Navin"=="Navin")
4+
print("Navin"=="NAVIN")
5+
print(True==True)
6+
print(True==False)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
i=0
2+
print("initial values is:")
3+
print(i)
4+
print("")
5+
while(i!=9)
6+
->i=i+1
7+
->print(i)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
print(strlen("Navin"))
2+
3+
print("Na"+"vin")
4+
5+
print(substr("Navin",1,2))
6+
7+
print(toupper("navin"))
8+
9+
print(isempty(""))
10+
11+
print(strrev("navin"))
12+
Binary file not shown.
492 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)