Index: Tokenizer.cs =================================================================== --- Tokenizer.cs (r‚vision 71) +++ Tokenizer.cs (copie de travail) @@ -16,6 +16,7 @@ //#define DUMP_TOKENS using System; +using System.Globalization; using System.Collections.Generic; using System.Text; using Ruby.Compiler; @@ -1172,7 +1173,7 @@ } if (is_float) { - double d = double.Parse(tok()); + double d = double.Parse(tok(),CultureInfo.InvariantCulture); _tokenValue.Double = d; return (int)Tokens.Float; }