Skip to content

Commit 01fd421

Browse files
authored
Update QuickRef.md (remove backslashes)
1 parent 3fc2dc5 commit 01fd421

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

QuickRef.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Create a function with `function`, including parameters with optional default va
137137

138138
```basic
139139
triple = function(n=1)
140-
return n\*3
140+
return n*3
141141
end function
142142
143143
print triple // 3
@@ -162,7 +162,7 @@ Functions invoked via dot syntax get a `self` variable that refers to the object
162162

163163
```basic
164164
Shape.degrees = function()
165-
return 180\*(self.sides-2)
165+
return 180*(self.sides-2)
166166
end function
167167
168168
x.degrees // 360

0 commit comments

Comments
 (0)