mirror of
https://github.com/ProgramSnail/Lama.git
synced 2026-01-02 12:08:20 +00:00
Fixed README
This commit is contained in:
parent
8917ae20e7
commit
d575f2ca15
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
fun insert (tree, value) {
|
||||
case tree of
|
||||
`Empty -> return `Node (value, `Empty, `Empty)
|
||||
`Empty -> return `Node (value, `Empty, `Empty)
|
||||
| `Node (x, left, right) ->
|
||||
if x > value
|
||||
then return `Node (x, insert (left, value), right)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue