Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
lone_haxx0r
on Sept 22, 2019
|
parent
|
context
|
favorite
| on:
Why I Write Games in C (yes, C)
The thing I hate about them is the backwards declaration syntax.
var x:i32 = 5; ugh, it makes no sense.
FreeFull
on Sept 22, 2019
|
next
[–]
Usually you wouldn't write the type, so `let x = 5;` In general, the C style type declarations complicate parsing quite a lot as well.
skohan
on Sept 22, 2019
|
prev
[–]
You'd be surprised how fast you get used to it.
Consider applying for YC's Fall 2026 batch!
Applications
are open till July 27.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
var x:i32 = 5; ugh, it makes no sense.