Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
# int_of_string "123459";;
|
||||
- : int = 123459
|
||||
# int_of_string "0xabcf123";;
|
||||
- : int = 180154659
|
||||
# int_of_string "0o7651";;
|
||||
- : int = 4009
|
||||
# int_of_string "0b101011001";;
|
||||
- : int = 345
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Scanf.sscanf "123459" "%d" (fun x -> x);;
|
||||
- : int = 123459
|
||||
# Scanf.sscanf "abcf123" "%x" (fun x -> x);;
|
||||
- : int = 180154659
|
||||
# Scanf.sscanf "7651" "%o" (fun x -> x);;
|
||||
- : int = 4009
|
||||
Loading…
Add table
Add a link
Reference in a new issue