mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
Progress on updating entire compiler for snake_case
This commit is contained in:
parent
db6cc5a7b1
commit
b56fbd38e1
297 changed files with 8416 additions and 8544 deletions
|
@ -150,7 +150,7 @@ mod solve_expr {
|
|||
infer_eq_without_problem(
|
||||
indoc!(
|
||||
r"
|
||||
Num.toStr
|
||||
Num.to_str
|
||||
"
|
||||
),
|
||||
"Num * -> Str",
|
||||
|
@ -4584,8 +4584,8 @@ mod solve_expr {
|
|||
|> Str.concat ") ("
|
||||
|> Str.concat (printExpr b)
|
||||
|> Str.concat ")"
|
||||
Val v -> Num.toStr v
|
||||
Var v -> "Var " |> Str.concat (Num.toStr v)
|
||||
Val v -> Num.to_str v
|
||||
Var v -> "Var " |> Str.concat (Num.to_str v)
|
||||
|
||||
main : Str
|
||||
main = printExpr (Var 3)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue