Defining Aliases
C
C++
C#
F#
C
C
// ullong is an alias for the unsigned long long type
typedef unsigned long long ullong;
C++
C++
// ullong is an alias for the unsigned long long type
using ullong = unsigned long long;
C#
C#
// ullong is an alias for the System.UInt128 type
using ullong = System.UInt128;
F#
F#
// long is an alias for the int64 type
type long = int64
let number: long = 123L
printfn "%d" number
Next