Browse thread
printf and positional specifier
- Anastasia Gornostaeva
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2006-11-11 (20:10) |
From: | Anastasia Gornostaeva <ermine@e...> |
Subject: | printf and positional specifier |
Hello. $ ocaml Objective Caml version 3.09.3 # open Printf;; # printf "%2$d %1$s" "abc" 2;; Bad conversion %$, at char number 0 in format string ``%2$d %1$s'' How? ermine