mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
16 lines
155 B
Markdown
16 lines
155 B
Markdown
# META
|
|
~~~ini
|
|
description=Simple assignment and variable access
|
|
type=repl
|
|
~~~
|
|
# SOURCE
|
|
~~~roc
|
|
» x = 5
|
|
» x
|
|
~~~
|
|
# OUTPUT
|
|
assigned `x`
|
|
---
|
|
5
|
|
# PROBLEMS
|
|
NIL
|