mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-03 17:39:02 +00:00
Variables can now have an initializer
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
func main()
|
||||
{
|
||||
int a = 65465
|
||||
int a
|
||||
a = 5 + 2
|
||||
|
||||
int b = 6
|
||||
int b = 6 + 1
|
||||
|
||||
return a + b
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user