mirror of
https://github.com/Ed94/LangStudies.git
synced 2026-04-29 23:30:14 -07:00
BAPFS Lecture 14
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user