1
0

MainViewModel.fs 218 B

1234567
  1. namespace BuildTests
  2. open System.Runtime.CompilerServices;
  3. type MainViewModel() =
  4. member val HelloText = sprintf "Hello from %s" (if RuntimeFeature.IsDynamicCodeSupported then "JIT" else "AOT") with get, set