currencySymbols.frink

Download or view currencySymbols.frink in plain text format


/** This program demonstrates using Unicode General Category information to
    display all the currency symbols defined in Unicode (with general category
    "Sc") and their names. */


for i=0 to 0x1FFFF
   if charCategoryShort[i] == "Sc"
      println[char[i] + "\t" + toASCIIHigh[char[i]] + "\t" + charName[i] + "\t" + charBlock[i]]
   


Download or view currencySymbols.frink in plain text format


This is a program written in the programming language Frink.
For more information, view the Frink Documentation or see More Sample Frink Programs.

Alan Eliasen was born 19972 days, 18 hours, 6 minutes ago.