LangStudies/Builds/Tests/12.Functions.letter
Ed94 0acd6ecbaf BAPFS Lecture 18
Instead of making a cli I made updates the gui to open any file.
2022-07-14 01:55:31 -04:00

16 lines
146 B
Plaintext

def square(value)
{
return value * value;
}
def empty() { return; }
def empty_2() { }
def multi_variable(a, b)
{
return a * b;
}
square(2);