[E-Lang] Hydro & E operator expansions

Tyler Close tclose@oilspace.com
Thu, 22 Mar 2001 10:59:48 -0000


I (Tyler) wrote:
> Maybe the `` quotes are default "en-US" and all the other 
> RFC1766 tags
> are reserved for their respective locale specific translators. This
> means that:
> 
> 	def balance := 6
> 	fr`Vous avez $balance francs.`
> 
> results in:
> 
> 	"Vous avez six francs."

Ooops, make that:

	def balance := 5.33
	fr`Vous avez $balance francs.`

results in :

	"Vous avez 5,33 francs."

As opposed to:

	"Vous avez 5.33 francs."

Tyler