BAPFS Lecture 15

This commit is contained in:
Edward R. Gonzalez 2022-07-13 22:09:54 -04:00
parent 8117abedc9
commit 37e4b8874e
4 changed files with 1214 additions and 1 deletions

View File

@ -5,6 +5,13 @@ if not ERRORLEVEL 0 (
exit
)
where python >nul 2>nul
if not ERRORLEVEL 0 (
echo Need python not found... Remove this error message if you have it.
pause
exit
)
where scons >nul 2>nul
if not ERRORLEVEL 0 (
python pip install scons

View 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;
}

File diff suppressed because it is too large Load Diff

View File

@ -18,7 +18,7 @@ config/icon="res://Assets/Branding/RDP_Class_cover_small.png"
[autoload]
GScene="*res://Lectures/Lecture.tscn"
GScript="*res://Lectures/Lecture.14.gd"
GScript="*res://Lectures/Lecture.15.gd"
[gui]