I came to haskell having some c background knowledge and wondering is there an analog to
#define print( a ) printf( "%s = %d\n", #a, a )
int a = 5;
print( a );
that should print
a = 5
?
|
I came to haskell having some c background knowledge and wondering is there an analog to
that should print
? |
||||
|
|
|
Here's the TH solution augustss mentioned:
then in another module:
|
||||
|
|
|
You can use the same #define trick in Haskell if you turn on the CPP language extension. Or you can use Template Haskell to get the same effect. But in pure Haskell it is impossible, because it violates the principle of alpha conversion, i.e., renaming bound variables (in a hygienic way) should not change the program semantics. |
|||||||
|
|
|||
|
|