Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in syntax

Why and when should a comma be used at the end of a block?

syntax rust idioms

In c, can a switch statement have 2 arguments? [duplicate]

X and Y or Z - ternary operator

Why do we use "&" before the integer variable when initializing a pointer that points to the integer?

c pointers syntax

Why can I repeat the + in Python arbitrarily in a calculation?

python syntax

What does ' mean/do at the end of function name in Haskell?

haskell syntax

Haskell parser error in where clause

syntax haskell

Build System for .NET with a Make/Rake-like syntax?

syntax msbuild build

Possible to call single-parameter Python function without using parentheses?

python syntax

Why does C# require parens around conditionals?

c# syntax

How can I inspect an objective c object?

objective-c syntax

Are friends in c++ mutual? [duplicate]

c++ syntax

C#; making a new delegate without declaring the method separately?

c# syntax delegates

How does this function definition work?

PHP: whitespaces that do matter [closed]

php syntax whitespace

What does this C syntax mean?

How can var know of an undefined type?

c# syntax

Why is `&` used for both binary AND and address-of in C?

c syntax

How to reference the return value of a perl sub

How is sequence syntactic sugar ([1..6]) translated into actual list syntax ( 1:2:3...6 )?