Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In C#, I can do the following:

int @private = 15;

And in VB.NET, I can do the following:

Dim [Private] As Integer = 15

I am wondering if there is a way in F# to use reserved keywords as identifiers, like there is in VB.NET and C#?

share|improve this question

1 Answer

up vote 11 down vote accepted

Given section 3.4 of the F# 2.0 spec:

Identifiers follow the specification below. Any sequence of characters that is enclosed in double-backtick marks (`` ``), excluding newlines, tabs, and double-backtick pairs themselves, is treated as an identifier.

I suspect you can put it in backticks:

``private``

I haven't tried it though.

share|improve this answer
Good find Jon. I tried it out by doing let ``let`` = 75 and System.Console.WriteLine(``let``) it worked. So know we all know. Thanks for the help – icemanind Jul 10 '11 at 6:58
This does work although it is syntactically very tedious. I recommend keeping such names private. – ChaosPandion Jul 10 '11 at 6:59
@ChaosPandion - I know. I agree. I am converting a library over to F# and it has an interface in it with a reserved keyword and changing the name of the interface would mean changing a bunch of other classes too, some of which, I don't have the source code. But if I could avoid it, I would. Trust me – icemanind Jul 10 '11 at 7:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.