mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Space to tabs
This commit is contained in:
+12
-12
@@ -29,20 +29,20 @@
|
|||||||
// the current stack frame.
|
// the current stack frame.
|
||||||
//
|
//
|
||||||
// Example:
|
// Example:
|
||||||
// x: int = 123
|
// x: int = 123
|
||||||
// a: any = x
|
// a: any = x
|
||||||
// // equivalent to
|
// // equivalent to
|
||||||
// a: any
|
// a: any
|
||||||
// a.data = &x
|
// a.data = &x
|
||||||
// a.id = typeid_of(type_of(x))
|
// a.id = typeid_of(type_of(x))
|
||||||
//
|
//
|
||||||
// Example:
|
// Example:
|
||||||
// a: any = 123
|
// a: any = 123
|
||||||
// // equivalent to
|
// // equivalent to
|
||||||
// a: any
|
// a: any
|
||||||
// tmp: int = 123
|
// tmp: int = 123
|
||||||
// a.data = &tmp
|
// a.data = &tmp
|
||||||
// a.id = typeid_of(type_of(tmp))
|
// a.id = typeid_of(type_of(tmp))
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
// `any` is a topologically-dual to a `union` in terms of its usage. Both support assignments of differing types
|
// `any` is a topologically-dual to a `union` in terms of its usage. Both support assignments of differing types
|
||||||
|
|||||||
Reference in New Issue
Block a user