python¶
emit_expr¶
In [ ]:
inl emit_expr forall a t. (args : a) (code : string) : t =
real
$'Fable.Core.PyInterop.emitPyExpr !args !code ' : t
In [ ]:
inl (~!\) forall t. (code : string) : t =
emit_expr () code
In [ ]:
inl (~!\\) forall t u. ((args : t), (code : string)) : u =
emit_expr args code
In [ ]:
inl import_all forall t. (file : string) : t =
real
$'Fable.Core.PyInterop.importAll !file ' : t
In [ ]:
inl import forall t. (name : string) (file : string) : t =
real
$'Fable.Core.PyInterop.import !name !file ' : t