Format example scripts better.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
// This script defines a function and calls it
|
||||
// This script defines a function and calls it.
|
||||
|
||||
fn bob() {
|
||||
fn call_me() {
|
||||
return 3;
|
||||
}
|
||||
|
||||
let result = bob();
|
||||
let result = call_me();
|
||||
|
||||
print(`bob() should be 3: ${result}`);
|
||||
print(`call_me() should be 3: ${result}`);
|
||||
|
Reference in New Issue
Block a user