From 0ae8cbf5c0b1a198b963490985b7738392ebcb97 Mon Sep 17 00:00:00 2001 From: ahriman Date: Mon, 3 Dec 2018 19:22:25 -0500 Subject: installed dokuwiki, added to navbar, updated news --- wiki/inc/lang/sk/resendpwd.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 wiki/inc/lang/sk/resendpwd.txt (limited to 'wiki/inc/lang/sk/resendpwd.txt') diff --git a/wiki/inc/lang/sk/resendpwd.txt b/wiki/inc/lang/sk/resendpwd.txt new file mode 100644 index 0000000..143706b --- /dev/null +++ b/wiki/inc/lang/sk/resendpwd.txt @@ -0,0 +1,3 @@ +====== Poslať nové heslo ====== + +Zadajte prosím vaše prihlasovacie meno do formulára za účelom vygenerovania nového hesla. Autorizačný odkaz bude zaslaný na vašu zaregistrovanú email adresu. \ No newline at end of file -- cgit 1.4.1-2-gfad0 commit Soul of a tiny new machine. More thorough tests → More comprehensible and rewrite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log tree commit diff stats
path: root/html/f2c-2.mu
blob: ded2a6408bfbda3da4f26beccbf489072e9b61cf (plain) (blame)
1
2
3
4
5
6
7
8
9
# c = (f-32) * 5/9
def fahrenheit-to-celsius [
  local-scope
  f:number <- next-ingredient
  tmp:number <- subtract f, 32
  tmp <- multiply tmp, 5
  c:number <- divide tmp, 9
  return c
]