mirror of
https://github.com/Ed94/LangStudies.git
synced 2025-06-14 19:11:46 -07:00
BAPFS Lecture 15
This commit is contained in:
19
Builds/Tests/13.MemberExpressions.uf
Normal file
19
Builds/Tests/13.MemberExpressions.uf
Normal file
@ -0,0 +1,19 @@
|
||||
Symbol.Member;
|
||||
|
||||
Symbol.Member = 1;
|
||||
|
||||
Symbol.Member[0] = 1;
|
||||
|
||||
Symbol.Member.AnotherMember["Something"];
|
||||
|
||||
let str = "Hello World!";
|
||||
let index = 0;
|
||||
|
||||
while (index < str.Length)
|
||||
{
|
||||
str[index];
|
||||
|
||||
// console.log(index, str[index]);
|
||||
|
||||
index += 1;
|
||||
}
|
Reference in New Issue
Block a user