langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
8
Task/Literals-Integer/OCaml/literals-integer.ocaml
Normal file
8
Task/Literals-Integer/OCaml/literals-integer.ocaml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# 727 = 0b1011010111;;
|
||||
- : bool = true
|
||||
# 727 = 0o1327;;
|
||||
- : bool = true
|
||||
# 727 = 0x2d7;;
|
||||
- : bool = true
|
||||
# 12345 = 12_345 (* underscores are ignored; useful for keeping track of places *);;
|
||||
- : bool = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue