mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
19 lines
165 B
Nim
19 lines
165 B
Nim
discard """
|
|
output: '''
|
|
100
|
|
100
|
|
'''
|
|
"""
|
|
|
|
proc f():int {.compileTime.} = 100
|
|
|
|
const F = f
|
|
echo F()
|
|
|
|
const G = proc ():int =
|
|
let x = f
|
|
let y = x
|
|
y()
|
|
|
|
echo G()
|