BAPFS Lecture 14

This commit is contained in:
2022-07-12 03:48:08 -04:00
parent 6832deb5ad
commit 5e3fd7a13c
3 changed files with 1160 additions and 1 deletions

View File

@ -0,0 +1,15 @@
def square(value)
{
return value * value;
}
def empty() { return; }
def empty_2() { }
def multi_variable(a, b)
{
return a * b;
}
// square(2);